When a form submits to itself as it's action then it is called PostBack Form.
<Form> tag has an attribute called Action = < programeName> in order to call the required program on submit.
All asp.net forms perform PostBack automatically. We don't write any action attribute only for webforms. During rendering it will automatically write action = < Same FormName>
ex:
<Form ID=<Fname> action = < SameForm> runat="Server">
No comments:
Post a Comment