vote up 0 vote down star

Hi,

I've a user control registered in an aspx page. User control has a textbox and a submit button. Ascx code of user control is placed under a asp:panel. Using firefox, when user hits enter key, the page is not submitting to the server.However, this works fine in IE browsers. Am i missing something here?

flag

48% accept rate

3 Answers

vote up 0 vote down

Hi Ed, Try setting defaultbutton="urbuttonid" to the asp:panel

link|flag
Whether ur page is submitting or not when using firefox.... ur question is not clear.... – Pandiya Chendur Nov 5 at 7:08
vote up 0 vote down

Set property DefaultButton="submitbtn" for asp:panel.

Replace submitbtn with your asp:button id.

link|flag
vote up 0 vote down

Yea, what the others say. You've probably got a submit button earlier in the page that Firefox is associating you enter key press with.

Use:

  <asp:panel .... DefaultButton="btSubmit">
     <asp:textbox ... />
     <asp:button id="btSubmit" ... />
    </asp:panel>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.