开发者

Is there a difference between client browser's submit mechanism and the ASP.NET postback mechanism?

开发者 https://www.devze.com 2023-01-17 00:42 出处:网络
While going through MSDN I found that in button properties useSubmitBeheviour there is written that if useSubmitBeheviour is true then it cause the Button control to use the bro开发者_如何学Cwser\'s s

While going through MSDN I found that in button properties useSubmitBeheviour there is written that if useSubmitBeheviour is true then it cause the Button control to use the bro开发者_如何学Cwser's submit mechanism and false then the ASP.NET page framework adds client-side script to the page to post the form to the server.

What its mean? please explain it?


When you POST a form you specify the location where the form data will be sent to be processed. It can be the same page or a different page. This is determined by the value of the ACTION attribute of the FORM tag. POSTBACK posts the data back to the same page and processed.


ASP.NET page framework writes a script block to submit the form in case you are not setting useSubmitBeheviour. In case you set this, the rendered XHTML for the button makes it the submit button for the form and the submission is done. In both the cases, the submission is done.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号