defaultfocus.aspx 431 B

1234567891011121314
  1. <%@ Page Language="C#" %>
  2. <html>
  3. <head>
  4. <title>HtmlForm test</title>
  5. </head>
  6. <body>
  7. <form defaultfocus="entry" defaultbutton="Button" id="form1" runat="server">
  8. <asp:TextBox id="firstone" Text="this won't have focus" runat="server"/>
  9. <asp:TextBox id="entry" Text="this will" runat="server"/>
  10. <asp:LinkButton name="Button" id="Button" Text="Hi There" runat="server"/>
  11. </form>
  12. </body>
  13. </html>