My current aspx form askes users to input fields into texbox and press submit button. We are thinking of using PUT method that read parameters from the URLs? Any quick solution for this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should look into using ASP.NET MVC. The original version of ASP.NET used POSTbacks a lot in the WebForms model which is why you are seeing that behaviour. It is possible to write HttpHandlers or HttpModules which give you more flexibility without requiring ASP.NET MVC.