Click here to Skip to main content
15,880,608 members
Articles / Web Development / ASP.NET

Solving out ASP.NET enter key problem

Rate me:
Please Sign up or sign in to vote.
2.95/5 (17 votes)
6 Mar 20073 min read 161.2K   1.4K   21  
This article explains about how to solve asp.net enter key problem
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>System.Web.UI.DefaultButton</name>
    </assembly>
    <members>
        <member name="T:System.Web.UI.DefaultButton.DefaultButton">
            <summary>
            Methods to set default button
            </summary>
        </member>
        <member name="M:System.Web.UI.DefaultButton.DefaultButton.SetDefaultButton(System.Web.UI.WebControls.TextBox,System.Web.UI.WebControls.Button)">
            <summary>
            Sets default button for the specified control
            </summary>
            <param name="control">Control name where user hits enter key</param>
            <param name="btButton">Button control to be called</param>
        </member>
        <member name="M:System.Web.UI.DefaultButton.DefaultButton.SetDefaultButton(System.Web.UI.WebControls.TextBox,System.Web.UI.WebControls.ImageButton)">
            <summary>
            Sets default button as the image button
            </summary>
            <param name="control">Control name where user hits enter key</param>
            <param name="btButton">Imagebutton to be called</param>
        </member>
    </members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer ThoughtWorks
India India
Call me Navaneeth Some years ago--never mind how long precisely, I was doing programs with C and C++. When .NET came, I started with C#,ASP.NET and SQL Server.

Comments and Discussions