Skip to main content
.NET Framework Class Library
WebControl..::.AccessKey Property

Gets or sets the access key that allows you to quickly navigate to the Web server control.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in System.Web.dll)
Syntax
Public Overridable Property AccessKey As String
public virtual string AccessKey { get; set; }
public:
virtual property String^ AccessKey {
	String^ get ();
	void set (String^ value);
}
abstract AccessKey : string with get, set
override AccessKey : string with get, set
<asp:WebControl AccessKey="String" />

Property Value

Type: System..::.String
The access key for quick navigation to the Web server control. The default value is Empty, which indicates that this property is not set.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException

The specified access key is neither nullNothingnullptra null reference (Nothing in Visual Basic), Empty nor a single character string.

Remarks

Use the AccessKey property to specify the keyboard shortcut for the Web server control. This allows you to navigate quickly to the control by pressing the ALT key and the key for the specified character on the keyboard. For example, setting the access key of a control to the string "D" indicates that the user can navigate to the control by pressing ALT+D.

Only a single character string is allowed for the AccessKey property. If you attempt to set this property to a value that is neither nullNothingnullptra null reference (Nothing in Visual Basic), Empty, nor a single character string, an exception is thrown.

NoteNote

This property is supported only in Internet Explorer 4.0 and later.

Examples

The following example illustrates how to set and use the AccessKey property of a TextBox control.

Security noteSecurity Note

This example has a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview.


<%@ Page Language="VB" AutoEventWireup="True" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
 <head>
    <title>AccessKey Property of a Web Control</title>
</head>
 <body>

   <h3>AccessKey Property of a Web Control</h3>

 <form id="form1" runat="server">

   <asp:TextBox id="TextBox1" 
     AccessKey="Y" 
     Text="Press Alt-Y to get focus here" 
     Columns="45"
     runat="server"/>

   <br />

   <asp:TextBox id="TextBox2" 
     AccessKey="Z" 
     Text="Press Alt-Z to get focus here" 
     Columns="45"
     runat="server"/>

 </form>

 </body>
 </html>
    


<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
 <head>
    <title>AccessKey Property of a Web Control</title>
</head>
 <body>

   <h3>AccessKey Property of a Web Control</h3>

 <form id="form1" runat="server">

   <asp:TextBox id="TextBox1" 
     AccessKey="Y" 
     Text="Press Alt-Y to get focus here" 
     Columns="45"
     runat="server"/>

   <br />

   <asp:TextBox id="TextBox2" 
     AccessKey="Z" 
     Text="Press Alt-Z to get focus here" 
     Columns="45"
     runat="server"/>

 </form>

 </body>
 </html>
    

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.