Enter Key Posts the Page

  • Thread starter Thread starter Prakash
  • Start date Start date
P

Prakash

i am using a textbox and i need to popup a dialog on Enter Key, i have used
javaScript for it.The pop-up is coming but the page gets posted.I am using
asp:button to save the information in page.i have set tabindex and focus but
nothing is working,how to stop the page being posted, Is there any way, Help
me.

Thanks in Advance.

Prakash.V
 
Have you tried cancelling the event in a cross browser manner?

Something like:
function DoSomething(e)
{
window.open(...);

if(navigator.appName == "Microsoft Internet Explorer")
{
event.returnValue=false;
event.cancelBubble=true;
else
{
e.preventDefault();
}
return false;
}
 
Back
Top