20 | /// This form should be used for pages that use the URL Rewriter and have
21 | /// forms that are posted back. If you use the normal ASP.NET HtmlForm,
22 | /// then the postback will not be able to correctly resolve the postback data to the form data.
23 | ///
24 | /// This form is a direct replacement for the <asp:form> tag.
25 | ///
26 | /// The following code demonstrates the usage of this control.
27 | ///
28 | /// <%@ Page language="c#" Codebehind="MyPage.aspx.cs" AutoEventWireup="false" Inherits="MyPage" %>
29 | /// <%@ Register TagPrefix="url" Namespace="Intelligencia.UrlRewriter" Assembly="Intelligencia.UrlRewriter" %>
30 | /// <html>
31 | /// ...
32 | /// <body>
33 | /// <url:form id="MyForm" runat="server">
34 | /// ...
35 | /// </url:form>
36 | /// </body>
37 | /// </html>
38 | ///
39 | ///
40 | [ComVisible(false)]
41 | [ToolboxData("<{0}:Form runat=\"server\">{0}:Form>")]
42 | public class Form : HtmlForm
43 | {
44 | ///