Click here to Skip to main content
15,912,756 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questiontooltip on datagrid column header Pin
deepalititi7-Jun-07 20:42
deepalititi7-Jun-07 20:42 
AnswerRe: tooltip on datagrid column header Pin
Chetan Ranpariya7-Jun-07 20:50
Chetan Ranpariya7-Jun-07 20:50 
QuestionStrange Report Download Issue Pin
Vasudevan Deepak Kumar7-Jun-07 20:42
Vasudevan Deepak Kumar7-Jun-07 20:42 
Questionencrypyion and decrypyion problem using Enterprise Library Pin
Vinod vbv7-Jun-07 20:22
Vinod vbv7-Jun-07 20:22 
AnswerRe: encrypyion and decrypyion problem using Enterprise Library Pin
Venkatesh Mookkan8-Jun-07 1:39
Venkatesh Mookkan8-Jun-07 1:39 
GeneralRe: encrypyion and decrypyion problem using Enterprise Library Pin
Vinod vbv8-Jun-07 2:31
Vinod vbv8-Jun-07 2:31 
QuestionHow to compatible Internet Explorer with the Mozilla Firefox Pin
.NET- India 7-Jun-07 20:14
.NET- India 7-Jun-07 20:14 
AnswerRe: How to compatible Internet Explorer with the Mozilla Firefox Pin
Biju Sam7-Jun-07 20:23
Biju Sam7-Jun-07 20:23 
Hi,

Different browsers behave differently.
the keywords they use differ.

i will give an example as to how to detect a browser and code for each one.
below is an eg for a button click event.

function clickButton(e, buttonid){
var bt = document.getElementById(buttonid);
if (bt){
if(navigator.appName.indexOf("Netscape")>(-1)){
if (e.keyCode == 13){
bt.click();
return false;
}
}
if (navigator.appName.indexOf("Microsoft Internet Explorer")>(-1)){
if (event.keyCode == 13){
bt.click();
return false;
}
}
}
}

if u see the difference in Netscape i have used e.keyCode
where as IE it is event.keyCode

Netscape and Mozilla behaves almost same.



Biju S
QuestionCompare Adjacent Rows of a GridView Control Pin
Sridhar Narayanan7-Jun-07 20:08
Sridhar Narayanan7-Jun-07 20:08 
Questionjavascript doubt Pin
saravanan057-Jun-07 19:36
saravanan057-Jun-07 19:36 
AnswerRe: javascript doubt Pin
Sylvester george7-Jun-07 20:11
Sylvester george7-Jun-07 20:11 
AnswerRe: javascript doubt Pin
Biju Sam7-Jun-07 20:15
Biju Sam7-Jun-07 20:15 
AnswerRe: javascript doubt [modified] Pin
Chetan Ranpariya7-Jun-07 20:20
Chetan Ranpariya7-Jun-07 20:20 
Questiondetailsview as item template in datalist,asp.net2.0+c# Pin
regin7-Jun-07 19:29
regin7-Jun-07 19:29 
AnswerRe: detailsview as item template in datalist,asp.net2.0+c# Pin
Sathesh Sakthivel7-Jun-07 19:33
Sathesh Sakthivel7-Jun-07 19:33 
GeneralRe: detailsview as item template in datalist,asp.net2.0+c# Pin
regin7-Jun-07 21:01
regin7-Jun-07 21:01 
QuestionConverting .html to .aspx Pin
SPRC7-Jun-07 19:09
SPRC7-Jun-07 19:09 
AnswerRe: Converting .html to .aspx Pin
Expert Coming7-Jun-07 19:15
Expert Coming7-Jun-07 19:15 
AnswerRe: Converting .html to .aspx Pin
Christian Graus7-Jun-07 20:36
protectorChristian Graus7-Jun-07 20:36 
QuestionObjectDataSource Issue Pin
Expert Coming7-Jun-07 19:07
Expert Coming7-Jun-07 19:07 
QuestionHow to store and get private key in certificates? Pin
zechariah7-Jun-07 18:46
zechariah7-Jun-07 18:46 
QuestionAJAX UpdatePanel related Pin
larree117-Jun-07 18:01
larree117-Jun-07 18:01 
AnswerRe: AJAX UpdatePanel related Pin
Venk25912-Jun-07 18:32
Venk25912-Jun-07 18:32 
GeneralRe: AJAX UpdatePanel related Pin
larree1112-Jun-07 19:17
larree1112-Jun-07 19:17 
QuestionI NEED SOURCE FORUM ASP.NET WITH C# Pin
suchon_phuong7-Jun-07 17:35
suchon_phuong7-Jun-07 17:35 

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.