Click here to Skip to main content
15,900,725 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionuse scanner from asp.net Pin
vinadas29-Jan-07 22:41
vinadas29-Jan-07 22:41 
AnswerRe: use scanner from asp.net Pin
badgrs29-Jan-07 23:53
badgrs29-Jan-07 23:53 
Questionconverting from vs2003 to vs2005 Pin
Shaimmaa29-Jan-07 22:27
Shaimmaa29-Jan-07 22:27 
AnswerRe: converting from vs2003 to vs2005 Pin
badgrs29-Jan-07 23:51
badgrs29-Jan-07 23:51 
QuestionButton Click when 'Enter' key is pressed Pin
Vsree29-Jan-07 22:16
Vsree29-Jan-07 22:16 
AnswerRe: Button Click when 'Enter' key is pressed Pin
Vasudevan Deepak Kumar29-Jan-07 22:22
Vasudevan Deepak Kumar29-Jan-07 22:22 
GeneralRe: Button Click when 'Enter' key is pressed Pin
Vsree29-Jan-07 22:28
Vsree29-Jan-07 22:28 
GeneralRe: Button Click when 'Enter' key is pressed Pin
blue_arc30-Jan-07 0:18
blue_arc30-Jan-07 0:18 
the logic is right but thw way u implemented is not right.....


do one thing


function buttonClick()<br />
{<br />
if ((window.event.which == 13) || (window.event.keyCode == 13)) <br />
{<br />
alert("Got U!!")<br />
return true;<br />
} <br />
else <br />
return false;<br />
}<br />
function OnPageLoad()<br />
{ <br />
  document.getElementById("Button").onkeydown=buttonClick;<br />
  document.forms["FORM_NAME"].onkeydown=buttonClick;<br />
}<br />
<br />
<body onload="OnPageLoad()">

GeneralRe: Button Click when 'Enter' key is pressed Pin
Vsree30-Jan-07 0:36
Vsree30-Jan-07 0:36 
QuestionHow to edit and Update the DridView Values. Pin
slSoftware29-Jan-07 21:37
slSoftware29-Jan-07 21:37 
AnswerRe: How to edit and Update the DridView Values. Pin
Vasudevan Deepak Kumar29-Jan-07 21:38
Vasudevan Deepak Kumar29-Jan-07 21:38 
GeneralRe: How to edit and Update the DridView Values. Pin
slSoftware29-Jan-07 22:08
slSoftware29-Jan-07 22:08 
Questionhow to check the email id is valid... Pin
Eswara Moorthi29-Jan-07 21:34
Eswara Moorthi29-Jan-07 21:34 
AnswerRe: how to check the email id is valid... Pin
Vasudevan Deepak Kumar29-Jan-07 21:37
Vasudevan Deepak Kumar29-Jan-07 21:37 
AnswerRe: how to check the email id is valid... Pin
vimal_yet29-Jan-07 21:53
vimal_yet29-Jan-07 21:53 
GeneralRe: how to check the email id is valid... Pin
Vasudevan Deepak Kumar29-Jan-07 21:59
Vasudevan Deepak Kumar29-Jan-07 21:59 
GeneralRe: how to check the email id is valid... Pin
Eswara Moorthi29-Jan-07 22:00
Eswara Moorthi29-Jan-07 22:00 
GeneralRe: how to check the email id is valid... Pin
Christian Graus29-Jan-07 22:04
protectorChristian Graus29-Jan-07 22:04 
GeneralRe: how to check the email id is valid... Pin
Vasudevan Deepak Kumar29-Jan-07 22:20
Vasudevan Deepak Kumar29-Jan-07 22:20 
Questionabout session handling Pin
Eswara Moorthi29-Jan-07 21:25
Eswara Moorthi29-Jan-07 21:25 
AnswerRe: about session handling Pin
Vasudevan Deepak Kumar29-Jan-07 21:31
Vasudevan Deepak Kumar29-Jan-07 21:31 
GeneralRe: about session handling Pin
Eswara Moorthi29-Jan-07 21:37
Eswara Moorthi29-Jan-07 21:37 
GeneralRe: about session handling Pin
Vasudevan Deepak Kumar29-Jan-07 21:46
Vasudevan Deepak Kumar29-Jan-07 21:46 
QuestionError writing to the exceptioj log file. Pin
irkahc29-Jan-07 20:44
irkahc29-Jan-07 20:44 
AnswerRe: Error writing to the exceptioj log file. Pin
Sylvester george29-Jan-07 21:00
Sylvester george29-Jan-07 21:00 

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.