ASP.NET pressing Enter key causes log out -


i have created website. after login when hit enter key add product, website kick me out.? dont have problem adding cart mouse click. 1 have same issue or suggestion ..

you need add controls inside asp:panel , make addproduct button default button:

<asp:panel id="panel1" runat="server" defaultbutton="btnaddproduct"">             //your other stuff            <asp:button id="btnaddproduct" runat="server" onclick="btnaddproduct_click"/> </asp:panel> 

this fire addproduct button when hit enter.

regards


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c++ - Using OpenSSL in a multi-threaded application -

All overlapping substrings matching a java regex -