| | | Set TextBox focus |
|
|
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="FocusAndDefault" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Focus and Default Button</title>
</head>
<body>
<form id="Form1"
defaultbutton="cmdSubmit"
defaultfocus="TextBox1"
runat="server">
<div>
TextBox1:
<asp:textbox id="TextBox1"
runat="server"
AccessKey="1"></asp:textbox>
TextBox2:
<asp:textbox id="TextBox2"
runat="server"
AccessKey="2"></asp:textbox>
<asp:button id="cmdSetFocus1"
text="Set Focus #1"
runat="server"
OnClick="cmdSetFocus1_Click">
</asp:button>
<asp:button id="cmdSetFocus2"
text="Set Focus #2"
runat="server"
OnClick="cmdSetFocus2_Click" >
</asp:button>
<asp:Button ID="cmdSubmit"
runat="server"
Text="Submit"
OnClick="cmdSubmit_Click" />
<asp:label id="Label1"
runat="Server"
EnableViewState="False"></asp:label>
</div>
</form>
</body>
</html>
File: Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class FocusAndDefault : System.Web.UI.Page
{
protected void cmdSubmit_Click(object sender, EventArgs e)
{
Label1.Text = "Clicked Submit.";
}
protected void cmdSetFocus1_Click(object sender, EventArgs e)
{
TextBox1.Focus();
}
protected void cmdSetFocus2_Click(object sender, EventArgs e)
{
TextBox2.Focus();
}
}
|
|
|
|
| Related examples in the same category |
| 1. | asp:TextBox: format (VB.net) | | | | 2. | asp:TextBox: AccessKey (VB.net) | | | | 3. | asp:TextBox: BorderStyle (VB.net) | | | | 4. | Single Line asp:TextBox (VB.net) | | | | 5. | Multiline asp:TextBox (VB.net) | | | | 6. | MaxLength for asp:textbox (VB.net) | | | | 7. | TabIndex for asp:textbox (VB.net) | | | | 8. | asp:textbox: back ground color (VB.net) | | | | 9. | asp:textbox: wrap (VB.net) | | | | 10. | BackColor, ForeColor, BorderColor, AccessKey, Columns for asp:textbox (VB.net) | | | | 11. | Convert value from asp:TextBox to upper case (VB.net) | | | | 12. | Control asp:TextBox visibility (VB.net) | | | | 13. | Get Text Box input and check if it is an Odd Number (VB.net) | | | | 14. | On text changed in asp:TextBox (VB.net) | | | | 15. | Watch TextBox, CheckBox and radiobutton auto post back action (C#) | | | | 16. | HTML Button, Select and InputBox in code behind (C#) | | | | 17. | asp: textbox on text changed event (C#) | | | | 18. | Validate textbox value manually (C#) | | | | 19. | Is asp:textbox empty (C#) | | | | 20. | Get value from TextBox (C#) | | | | 21. | Pre fill the asp textbox control (C#) | | | | 22. | TextMode: SingleLine, Password and MultiLine | | | | 23. | Triggering an event when a TextBox change occurs (VB) | | | | 24. | Triggering an event when a TextBox change occurs (C#) | | | | 25. | Set AutoCompleteType | | | | 26. | Set MaxLength, Columns | | | | 27. | Rows, TextMode, Wrap | | | | 28. | TextMode=Password | | | | 29. | Create URL from textbox input | | |
|