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

ASP.NET

 
GeneralRe: Display loading image on postback Pin
Any_India9-Feb-10 20:42
Any_India9-Feb-10 20:42 
GeneralRe: Display loading image on postback Pin
Brij9-Feb-10 20:49
mentorBrij9-Feb-10 20:49 
GeneralRe: Display loading image on postback Pin
Any_India9-Feb-10 21:25
Any_India9-Feb-10 21:25 
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 
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
}
}
}

this is the javascript function which i used when user cliks on enter button to login. please could you check the functionality of the codeproject dont sign in the page click on register page you will be redirected to the register page at the same time you can login to the code project by giving your user details and click on enter button it is working even when you are in register page i had the similar to that but when i was in register page if i try to enter any letter in the userid and in password javascript error is firing
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 
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 

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.