Click here to Skip to main content
15,919,358 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPlease give me answer Pin
indian14314-May-10 12:10
indian14314-May-10 12:10 
AnswerRe: Please give me answer Pin
Dr.Walt Fair, PE14-May-10 12:39
professionalDr.Walt Fair, PE14-May-10 12:39 
GeneralRe: Please give me answer Pin
indian14314-May-10 12:59
indian14314-May-10 12:59 
GeneralRe: Please give me answer Pin
Dr.Walt Fair, PE14-May-10 13:09
professionalDr.Walt Fair, PE14-May-10 13:09 
GeneralRe: Please give me answer Pin
Not Active14-May-10 15:43
mentorNot Active14-May-10 15:43 
GeneralRe: Please give me answer Pin
indian14314-May-10 16:02
indian14314-May-10 16:02 
QuestionChanging the style sheet for a asp content page based on the version of IE (javascript?) Pin
Steve Holdorf14-May-10 6:46
Steve Holdorf14-May-10 6:46 
AnswerRe: Changing the style sheet for a asp content page based on the version of IE (javascript?) Pin
Brij14-May-10 7:54
mentorBrij14-May-10 7:54 
This js mehod would return you the version of Internet explorer.
<br />
  function getInternetExplorerVersion()<br />
// Returns the version of Internet Explorer or a -1<br />
// (indicating the use of another browser).<br />
{<br />
  var rv = -1; // Return value assumes failure.<br />
  if (navigator.appName == 'Microsoft Internet Explorer')<br />
  {<br />
    var ua = navigator.userAgent;<br />
    var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");<br />
    if (re.exec(ua) != null)<br />
      rv = parseFloat( RegExp.$1 );<br />
  }<br />
  return rv;<br />
}<br />


so this will return the version number.And how to change the css dynamically have a look to the link
Use JavaScript to Change a Cascading Style Sheet (CSS) Dynamically

AnswerRe: Changing the style sheet for a asp content page based on the version of IE (javascript?) Pin
Steve Holdorf15-May-10 6:08
Steve Holdorf15-May-10 6:08 
QuestionSingleton Pattern Pin
Brendan Vogt14-May-10 5:36
Brendan Vogt14-May-10 5:36 
AnswerRe: Singleton Pattern Pin
Brij14-May-10 7:56
mentorBrij14-May-10 7:56 
GeneralRe: Singleton Pattern Pin
Brendan Vogt14-May-10 8:56
Brendan Vogt14-May-10 8:56 
QuestionASTreeView help Pin
vishnukamath14-May-10 2:24
vishnukamath14-May-10 2:24 
QuestionCannot open database "ASPState" requested by the login. The login failed Pin
Satish_S14-May-10 2:17
Satish_S14-May-10 2:17 
AnswerRe: Cannot open database "ASPState" requested by the login. The login failed Pin
saini arun14-May-10 2:36
saini arun14-May-10 2:36 
GeneralRe: Cannot open database "ASPState" requested by the login. The login failed Pin
Satish_S14-May-10 2:42
Satish_S14-May-10 2:42 
GeneralRe: Cannot open database "ASPState" requested by the login. The login failed Pin
saini arun14-May-10 2:47
saini arun14-May-10 2:47 
GeneralRe: Cannot open database "ASPState" requested by the login. The login failed Pin
Satish_S14-May-10 3:29
Satish_S14-May-10 3:29 
GeneralRe: Cannot open database "ASPState" requested by the login. The login failed Pin
Satish_S15-May-10 0:09
Satish_S15-May-10 0:09 
QuestionI developed a tool, word convert chm, welcome evaluation Pin
suwangsoft14-May-10 1:42
suwangsoft14-May-10 1:42 
AnswerRe: I developed a tool, word convert chm, welcome evaluation Pin
R. Giskard Reventlov14-May-10 2:03
R. Giskard Reventlov14-May-10 2:03 
GeneralRe: I developed a tool, word convert chm, welcome evaluation Pin
suwangsoft14-May-10 2:21
suwangsoft14-May-10 2:21 
GeneralRe: I developed a tool, word convert chm, welcome evaluation Pin
Not Active14-May-10 2:32
mentorNot Active14-May-10 2:32 
GeneralRe: I developed a tool, word convert chm, welcome evaluation Pin
suwangsoft14-May-10 2:36
suwangsoft14-May-10 2:36 
GeneralRe: I developed a tool, word convert chm, welcome evaluation Pin
Not Active14-May-10 3:32
mentorNot Active14-May-10 3:32 

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.