Home All Groups Group Topic Archive Search About

Enter key as select/submit button

Author
6 Feb 2009 1:50 AM
Morris Neuman
Hi,

I have a page with a dropdownlist (dropdownlist1), a textbox (textbox1), a
submit button(submit1) and a gridview (gridview1).

Currently if the user enter a value in textbox1 then must click the submit1
button for the gridview1 to display the data.

Is there a way to set-up the enter key to display the data selected in
textbox1 instead of havint to click on the submit button?

--
Thanks
Morris

Author
6 Feb 2009 5:44 AM
Allen Chen [MSFT]
Hi Morris,

I think you can set the defaultbutton of the form to do this:

<form id="form1" runat="server" defaultbutton="Button1" >
<asp:Button ID="Button1" runat="server" Text="Button" />

If you're using Master page you can try this in the content page:

Aspx.cs:
protected void Page_Load(object sender, EventArgs e)
        {
            this.Page.Form.DefaultButton = this.Button1.UniqueID;
        }

Aspx:
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
runat="server">

    <asp:Button ID="Button1" runat="server" Text="Button"
onclick="Button1_Click" />

</asp:Content>

Please have a try and let me know if it works.

Regards,
Allen Chen
Microsoft Online Support

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msd***@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subscriptions/aa948868.aspx#notifications.

Note: MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 2 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions. Issues of this
nature are best handled working with a dedicated Microsoft Support Engineer
by contacting Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/en-us/subscriptions/aa948874.aspx
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
Author
7 Feb 2009 1:19 PM
Morris Neuman
Thanks Allen.  That worked well.
--
Thanks
Morris


Show quoteHide quote
"Allen Chen [MSFT]" wrote:

> Hi Morris,
>
> I think you can set the defaultbutton of the form to do this:
>
> <form id="form1" runat="server" defaultbutton="Button1" >
> <asp:Button ID="Button1" runat="server" Text="Button" />
>
> If you're using Master page you can try this in the content page:
>
> Aspx.cs:
> protected void Page_Load(object sender, EventArgs e)
>         {
>             this.Page.Form.DefaultButton = this.Button1.UniqueID;
>         }
>
> Aspx:
> <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
> runat="server">
>
>     <asp:Button ID="Button1" runat="server" Text="Button"
> onclick="Button1_Click" />
>
> </asp:Content>
>
> Please have a try and let me know if it works.
>
> Regards,
> Allen Chen
> Microsoft Online Support
>
> Delighting our customers is our #1 priority. We welcome your comments and
> suggestions about how we can improve the support we provide to you. Please
> feel free to let my manager know what you think of the level of service
> provided. You can send feedback directly to my manager at:
> msd***@microsoft.com.
>
> ==================================================
> Get notification to my posts through email? Please refer to
> http://msdn.microsoft.com/en-us/subscriptions/aa948868.aspx#notifications.
>
> Note: MSDN Managed Newsgroup support offering is for non-urgent issues
> where an initial response from the community or a Microsoft Support
> Engineer within 2 business day is acceptable. Please note that each follow
> up response may take approximately 2 business days as the support
> professional working with you may need further investigation to reach the
> most efficient resolution. The offering is not appropriate for situations
> that require urgent, real-time or phone-based interactions. Issues of this
> nature are best handled working with a dedicated Microsoft Support Engineer
> by contacting Microsoft Customer Support Services (CSS) at
> http://msdn.microsoft.com/en-us/subscriptions/aa948874.aspx
> ==================================================
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
>