Click here to Skip to main content
16,005,473 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: passing parameters Pin
Jintal Patel16-Sep-07 22:18
Jintal Patel16-Sep-07 22:18 
QuestionValidator for not allow PO BOX number Pin
Panchal Hardik16-Sep-07 20:01
Panchal Hardik16-Sep-07 20:01 
AnswerRe: Validator for not allow PO BOX number Pin
Sandeep Akhare16-Sep-07 20:23
Sandeep Akhare16-Sep-07 20:23 
GeneralRe: Validator for not allow PO BOX number Pin
Panchal Hardik16-Sep-07 20:30
Panchal Hardik16-Sep-07 20:30 
GeneralRe: Validator for not allow PO BOX number Pin
Sandeep Akhare16-Sep-07 20:48
Sandeep Akhare16-Sep-07 20:48 
GeneralRe: Validator for not allow PO BOX number Pin
Panchal Hardik16-Sep-07 20:54
Panchal Hardik16-Sep-07 20:54 
GeneralRe: Validator for not allow PO BOX number Pin
Sandeep Akhare16-Sep-07 22:26
Sandeep Akhare16-Sep-07 22:26 
Questionhow enter key press work for mozilla firefox browser Pin
Piyush Vardhan Singh16-Sep-07 19:49
Piyush Vardhan Singh16-Sep-07 19:49 
hi friend i am using javascript for enter key press but its work in internet explorer browser but its not work in mozilla firefox.how its work plz help me.

code:-

function enter(evt, buttonid)
{
var mykey, shift;
if (window.Event)
{
mykey = evt.which;
shift = (evt.modifiers & Event.SHIFT_MASK) ? true : false;
}
else
{
mykey = event.keyCode;
shift = event.shiftKey;
}
if(shift && mykey == 13)
{
return false;
}
else if(mykey == 13)
{
var btn = document.getElementById(buttonid);
if (btn != null)
{
btn.click();
setTimeout('messageDisplay()', 500);
flag=false;
event.keyCode = 0;
return false;
}
}

}

Piyush Vardhan Singh
Senior Software Engineer
TAS NewDelhi
India

AnswerRe: how enter key press work for mozilla firefox browser Pin
Parwej Ahamad16-Sep-07 20:00
professionalParwej Ahamad16-Sep-07 20:00 
GeneralRe: how enter key press work for mozilla firefox browser Pin
Piyush Vardhan Singh16-Sep-07 20:07
Piyush Vardhan Singh16-Sep-07 20:07 
GeneralRe: how enter key press work for mozilla firefox browser Pin
Parwej Ahamad16-Sep-07 20:19
professionalParwej Ahamad16-Sep-07 20:19 
GeneralRe: how enter key press work for mozilla firefox browser Pin
Piyush Vardhan Singh16-Sep-07 20:24
Piyush Vardhan Singh16-Sep-07 20:24 
GeneralRe: how enter key press work for mozilla firefox browser Pin
Parwej Ahamad16-Sep-07 20:29
professionalParwej Ahamad16-Sep-07 20:29 
GeneralRe: how enter key press work for mozilla firefox browser Pin
Piyush Vardhan Singh16-Sep-07 20:38
Piyush Vardhan Singh16-Sep-07 20:38 
GeneralRe: how enter key press work for mozilla firefox browser Pin
Parwej Ahamad16-Sep-07 20:45
professionalParwej Ahamad16-Sep-07 20:45 
GeneralRe: how enter key press work for mozilla firefox browser Pin
Piyush Vardhan Singh16-Sep-07 20:52
Piyush Vardhan Singh16-Sep-07 20:52 
AnswerRe: how enter key press work for mozilla firefox browser Pin
N a v a n e e t h16-Sep-07 22:54
N a v a n e e t h16-Sep-07 22:54 
Questionshow or hide Panel using ajax or javascript Pin
Vipin.d16-Sep-07 19:26
Vipin.d16-Sep-07 19:26 
AnswerRe: show or hide Panel using ajax or javascript Pin
Parwej Ahamad16-Sep-07 19:36
professionalParwej Ahamad16-Sep-07 19:36 
GeneralRe: show or hide Panel using ajax or javascript Pin
Vipin.d16-Sep-07 20:08
Vipin.d16-Sep-07 20:08 
GeneralRe: show or hide Panel using ajax or javascript Pin
Parwej Ahamad16-Sep-07 20:13
professionalParwej Ahamad16-Sep-07 20:13 
GeneralRe: show or hide Panel using ajax or javascript Pin
Vipin.d16-Sep-07 20:17
Vipin.d16-Sep-07 20:17 
GeneralRe: show or hide Panel using ajax or javascript Pin
Sandeep Akhare16-Sep-07 20:18
Sandeep Akhare16-Sep-07 20:18 
GeneralRe: show or hide Panel using ajax or javascript Pin
Paras Kaneriya16-Sep-07 20:13
Paras Kaneriya16-Sep-07 20:13 
GeneralRe: show or hide Panel using ajax or javascript Pin
Vipin.d16-Sep-07 20:19
Vipin.d16-Sep-07 20:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.