Click here to Skip to main content
15,918,243 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Strange Problem with webservice Pin
shankbond9-Feb-10 21:39
shankbond9-Feb-10 21:39 
NewsRe: Strange Problem with webservice Pin
shankbond13-Feb-10 3:12
shankbond13-Feb-10 3:12 
QuestionListBoxes Manupulation Pin
ovaisgeo9-Feb-10 20:20
ovaisgeo9-Feb-10 20:20 
AnswerRe: ListBoxes Manupulation Pin
Brij9-Feb-10 20:35
mentorBrij9-Feb-10 20:35 
AnswerRe: ListBoxes Manupulation Pin
sashidhar9-Feb-10 21:37
sashidhar9-Feb-10 21:37 
AnswerRe: ListBoxes Manupulation Pin
Sigurd Johansen10-Feb-10 12:14
Sigurd Johansen10-Feb-10 12:14 
QuestionDisplay loading image on postback Pin
Any_India9-Feb-10 20:05
Any_India9-Feb-10 20:05 
AnswerRe: Display loading image on postback Pin
Brij9-Feb-10 20:33
mentorBrij9-Feb-10 20:33 
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 

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.