Click here to Skip to main content
15,887,596 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Display loading image on postback Pin
Brij9-Feb-10 22:08
mentorBrij9-Feb-10 22:08 
AnswerRe: Display loading image on postback Pin
i gr89-Feb-10 20:37
i gr89-Feb-10 20:37 
QuestionProblem on Login page with Register page Pin
Nath9-Feb-10 19:34
Nath9-Feb-10 19:34 
AnswerRe: Problem on Login page with Register page Pin
Gaurav Dudeja India9-Feb-10 19:41
Gaurav Dudeja India9-Feb-10 19:41 
GeneralRe: Problem on Login page with Register page Pin
Nath9-Feb-10 19:56
Nath9-Feb-10 19:56 
GeneralRe: Problem on Login page with Register page Pin
Brij9-Feb-10 20:37
mentorBrij9-Feb-10 20:37 
GeneralRe: Problem on Login page with Register page Pin
Nath9-Feb-10 21:43
Nath9-Feb-10 21:43 
GeneralRe: Problem on Login page with Register page Pin
Nath9-Feb-10 22:30
Nath9-Feb-10 22:30 
function doClick(buttonName,e)
{
//the purpose of this function is to allow the enter key to
//point to the correct button to click.
var key ;

if(window.event)
key = window.event.keyCode; //IE
else
key = e.which; //firefox

if (key == 13)
{
//Get the button the user wants to have clicked
var btn = document.getElementById(buttonName);
if (btn != null)
{ //If we find the button click it
btn.click();
event.keyCode = 0
}
}
}



txtEmail.Attributes.Add("onKeyPress", "doClick('" + lnkbtLogin.ClientID + "',event)");
txtPassword.Attributes.Add("onKeyPress", "doClick('" + lnkbtLogin.ClientID + "',event)");


in the master page i kept this coding on keypress enter to login

my problem is if i click on register page, if i want to login lying on the register page if i trying to enter emailid and password javascript error is firing for every single letter and if i continue and click on keypress it is firing for the register page and it is not logging in if i click on signin button it is working could you help me


Thanks & Regards,
Nath
QuestionRestric download file more than one at a time from any hyperlink? Pin
Tridip Bhattacharjee9-Feb-10 19:04
professionalTridip Bhattacharjee9-Feb-10 19:04 
AnswerRe: Restric download file more than one at a time from any hyperlink? Pin
_Damian S_9-Feb-10 19:30
professional_Damian S_9-Feb-10 19:30 
AnswerRe: Restric download file more than one at a time from any hyperlink? Pin
i gr810-Feb-10 19:15
i gr810-Feb-10 19:15 
QuestionNot able to Login after deployment Pin
dayakar_dn9-Feb-10 18:25
dayakar_dn9-Feb-10 18:25 
AnswerRe: Not able to Login after deployment Pin
Brij9-Feb-10 18:45
mentorBrij9-Feb-10 18:45 
QuestionSqldatacaching Pin
sekannak9-Feb-10 17:54
sekannak9-Feb-10 17:54 
AnswerRe: Sqldatacaching Pin
m@dhu9-Feb-10 18:43
m@dhu9-Feb-10 18:43 
AnswerRe: Sqldatacaching Pin
Brij9-Feb-10 18:57
mentorBrij9-Feb-10 18:57 
GeneralRe: Sqldatacaching Pin
sekannak9-Feb-10 21:49
sekannak9-Feb-10 21:49 
GeneralRe: Sqldatacaching Pin
Brij9-Feb-10 22:11
mentorBrij9-Feb-10 22:11 
Questionwhat is equal to servlet context in asp.net [modified] Pin
prasadbuddhika9-Feb-10 17:36
prasadbuddhika9-Feb-10 17:36 
AnswerRe: what is equal to servlet context in asp.net Pin
sashidhar9-Feb-10 18:27
sashidhar9-Feb-10 18:27 
AnswerRe: what is equal to servlet context in asp.net Pin
Brij9-Feb-10 18:36
mentorBrij9-Feb-10 18:36 
GeneralRe: what is equal to servlet context in asp.net Pin
prasadbuddhika9-Feb-10 19:53
prasadbuddhika9-Feb-10 19:53 
GeneralRe: what is equal to servlet context in asp.net [modified] Pin
i gr89-Feb-10 20:24
i gr89-Feb-10 20:24 
GeneralRe: what is equal to servlet context in asp.net Pin
Brij9-Feb-10 20:27
mentorBrij9-Feb-10 20:27 
QuestionHow to deal with time-consuming server operations? Pin
Member 10339079-Feb-10 11:56
Member 10339079-Feb-10 11:56 

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.