|
- Postback forms are forms whose method attributes is set to post and whose action attribute is set to the same URL that the form exists on. That is, if the web pages Page1.aspx has a postback form, its form's method attribute will be set to post and its action property to Page1.aspx.
-
Redirect forms are ones whose action attribute is set to a URL other than the URL the form exists on. That is, if the web page Page1.aspx has a redirect form, its form's action attribute is set to some other web page's URL such as Page2.aspx. Redirect forms can have a method attribute of either post or get.
|