Click here to Skip to main content
15,888,521 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to assign the total value of a column to the footer? Pin
Gaurav Dudeja India10-Feb-10 18:54
Gaurav Dudeja India10-Feb-10 18:54 
NewsGoogle API - graph Pin
Member 395625710-Feb-10 18:17
Member 395625710-Feb-10 18:17 
GeneralRe: Google API - graph Pin
nainakarri10-Feb-10 18:58
nainakarri10-Feb-10 18:58 
GeneralRe: Google API - graph Pin
Member 395625710-Feb-10 19:36
Member 395625710-Feb-10 19:36 
GeneralRe: Google API - graph Pin
Anurag Gandhi10-Feb-10 20:42
professionalAnurag Gandhi10-Feb-10 20:42 
QuestionFind How many Enter Key Press Pin
sjs4u10-Feb-10 17:55
sjs4u10-Feb-10 17:55 
AnswerRe: Find How many Enter Key Press Pin
Anurag Gandhi10-Feb-10 18:19
professionalAnurag Gandhi10-Feb-10 18:19 
Questionon keypress enter to submit login details IE is working but in firefox not working Pin
Nath10-Feb-10 15:40
Nath10-Feb-10 15:40 
Hi,


on pressing enter button to submit the login details it is working in IE but it is not working in Firefox could anyone help iam using the javascript function


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
}
}
}


Thanks & Regards,
Nath
QuestionCalling webservice Pin
Ramkithepower10-Feb-10 15:33
Ramkithepower10-Feb-10 15:33 
AnswerRe: Calling webservice Pin
Pranay Rana10-Feb-10 18:18
professionalPranay Rana10-Feb-10 18:18 
AnswerRe: Calling webservice Pin
sashidhar10-Feb-10 18:24
sashidhar10-Feb-10 18:24 
GeneralRe: Calling webservice Pin
Ramkithepower11-Feb-10 6:03
Ramkithepower11-Feb-10 6:03 
GeneralRe: Calling webservice Pin
sashidhar11-Feb-10 17:43
sashidhar11-Feb-10 17:43 
QuestionWorking with Memory Streams Pin
Hema Bairavan10-Feb-10 7:19
Hema Bairavan10-Feb-10 7:19 
AnswerRe: Working with Memory Streams Pin
Steve Wellens10-Feb-10 7:49
Steve Wellens10-Feb-10 7:49 
GeneralRe: Working with Memory Streams Pin
Hema Bairavan10-Feb-10 8:11
Hema Bairavan10-Feb-10 8:11 
GeneralRe: Working with Memory Streams Pin
Steve Wellens10-Feb-10 8:16
Steve Wellens10-Feb-10 8:16 
GeneralRe: Working with Memory Streams Pin
Hema Bairavan10-Feb-10 8:21
Hema Bairavan10-Feb-10 8:21 
AnswerRe: Working with Memory Streams Pin
i gr810-Feb-10 18:18
i gr810-Feb-10 18:18 
GeneralRe: Working with Memory Streams Pin
Hema Bairavan10-Feb-10 19:06
Hema Bairavan10-Feb-10 19:06 
QuestionInvalid registration key Pin
nakins10-Feb-10 5:00
nakins10-Feb-10 5:00 
QuestionOther alternative to WS-Security [modified] Pin
raquidd2210-Feb-10 4:04
raquidd2210-Feb-10 4:04 
AnswerRe: call web service from one server Pin
N a v a n e e t h10-Feb-10 4:23
N a v a n e e t h10-Feb-10 4:23 
QuestionHow to play movie clips and swf files in asp.net Pin
CHANDUA10-Feb-10 2:27
CHANDUA10-Feb-10 2:27 
AnswerRe: How to play movie clips and swf files in asp.net Pin
Richard MacCutchan10-Feb-10 4:45
mveRichard MacCutchan10-Feb-10 4:45 

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.