New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Keyboard Support

This is a Link button with "AccessKey" set to "M". You can also use the Tab key to focus it and Space/Enter to execute its click.
Event log

This example demonstrates how you can use the keyboard to control a RadLinkButton. You can focus a button by using the Tab key if you set the TabIndex property of RadLinkButton according to the desired flow of the page.

In addition, you can use a shortcut if you set the AccessKey property. Press Alt+AccessKey in IE and Chrome, Shift+Alt+AccessKey for Firefox and Shift+Esc+AccessKey for Opera.

To execute a selected Link button press the Enter or Space key when it is focused.

Note: By default tab-access is disabled in Safari. To enable it, check "Preferences > Advanced > Press tab to highlight each item on the page".

  • DefaultCS.aspx
  • scripts.js
<%@ Page Language="C#" AutoEventWireup="true"  %>

<%@ Register TagPrefix="qsf" Namespace="Telerik.QuickStart" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
    <title>Telerik ASP.NET Example</title>
    <script src="scripts.js" type="text/javascript"></script>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
    <div class="demo-containers">
        <div class="demo-container">
            <telerik:RadLinkButton runat="server" ID="RadLinkButton1" TabIndex="1" AccessKey="M"
                NavigateUrl="http://www.telerik.com/" Target="_blank" Text="Go to the main Telerik site"
                OnClientClicked="telerikDemo.OnClientClicked">
            </telerik:RadLinkButton>
        </div>
    </div>
    <qsf:MessageBox ID="InformationBox1" Icon="Info" Type="Info" runat="server">
        This is a Link button with "AccessKey" set to "M". You can also use the Tab key
        to focus it and Space/Enter to execute its click.
    </qsf:MessageBox>
    <qsf:EventLogConsole ID="EventLogConsole" runat="server" AllowClear="true"></qsf:EventLogConsole>
    </form>
</body>
</html>

Support & Learning Resources

Find Assistance