Click here to Skip to main content
15,910,981 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: HTML Tabs - Help Required Pin
mr_muskurahat4-Feb-09 7:36
mr_muskurahat4-Feb-09 7:36 
GeneralRe: HTML Tabs - Help Required Pin
mr_muskurahat4-Feb-09 7:40
mr_muskurahat4-Feb-09 7:40 
QuestionAjax problem in internetexplorer 6 & firefox Pin
mr_muskurahat2-Feb-09 22:21
mr_muskurahat2-Feb-09 22:21 
AnswerRe: Ajax problem in internetexplorer 6 & firefox Pin
Christian Graus2-Feb-09 22:30
protectorChristian Graus2-Feb-09 22:30 
AnswerRe: Ajax problem in internetexplorer 6 & firefox Pin
sarang_k2-Feb-09 22:48
sarang_k2-Feb-09 22:48 
GeneralRe: Ajax problem in internetexplorer 6 & firefox Pin
mr_muskurahat2-Feb-09 22:54
mr_muskurahat2-Feb-09 22:54 
GeneralRe: Ajax problem in internetexplorer 6 & firefox Pin
sarang_k2-Feb-09 23:14
sarang_k2-Feb-09 23:14 
AnswerRe: Ajax problem in internetexplorer 6 & firefox Pin
Ranjit Viswakumar3-Feb-09 5:38
Ranjit Viswakumar3-Feb-09 5:38 
Each browser has a different way to call an XmlHttp request. Because of this, your AJAX script needs to try all of them until it finds the correct one. You can add something like this to your script to initiate the proper request-

function GetXmlHttpObject() {
  var xmlHttp=null;
  try {
   // Firefox, Opera 8.0+, Safari
   xmlHttp=new XMLHttpRequest();
  }
  catch (e) {
   //Internet Explorer
   try {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
    catch (e) {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
  return xmlHttp;
}

Try that out. Good luck!

Ranjit Viswakumar
Professional Services Specialist
HostMySite.com[^]
QuestionRestore database via XML Pin
RajaAhmed2-Feb-09 22:17
RajaAhmed2-Feb-09 22:17 
AnswerRe: Restore database via XML Pin
Christian Graus2-Feb-09 22:32
protectorChristian Graus2-Feb-09 22:32 
GeneralRe: Restore database via XML Pin
RajaAhmed2-Feb-09 22:47
RajaAhmed2-Feb-09 22:47 
GeneralRe: Restore database via XML Pin
SeMartens2-Feb-09 22:51
SeMartens2-Feb-09 22:51 
GeneralRe: Restore database via XML Pin
SeMartens2-Feb-09 22:54
SeMartens2-Feb-09 22:54 
GeneralRe: Restore database via XML Pin
RajaAhmed2-Feb-09 23:03
RajaAhmed2-Feb-09 23:03 
GeneralRe: Restore database via XML Pin
Christian Graus2-Feb-09 22:53
protectorChristian Graus2-Feb-09 22:53 
GeneralRe: Restore database via XML Pin
N a v a n e e t h2-Feb-09 22:56
N a v a n e e t h2-Feb-09 22:56 
Questionmodal popup extender not handling aspx code behind function Pin
hyperalergelo2-Feb-09 21:55
hyperalergelo2-Feb-09 21:55 
QuestionGlobal resourse file [modified] Pin
Chetan_pawar2-Feb-09 21:55
Chetan_pawar2-Feb-09 21:55 
QuestionError:Object reference not set to an instance of an object Pin
M.Ambigai2-Feb-09 21:54
M.Ambigai2-Feb-09 21:54 
AnswerRe: Error:Object reference not set to an instance of an object Pin
Abhijit Jana2-Feb-09 22:10
professionalAbhijit Jana2-Feb-09 22:10 
AnswerRe: Error:Object reference not set to an instance of an object [modified] Pin
mr_muskurahat2-Feb-09 22:12
mr_muskurahat2-Feb-09 22:12 
GeneralRe: Error:Object reference not set to an instance of an object Pin
Abhijit Jana2-Feb-09 22:19
professionalAbhijit Jana2-Feb-09 22:19 
QuestionDifference b/n session and cache Pin
NidhiKanu2-Feb-09 21:54
professionalNidhiKanu2-Feb-09 21:54 
AnswerRe: Difference b/n session and cache Pin
anujbanka17842-Feb-09 22:01
anujbanka17842-Feb-09 22:01 
GeneralRe: Difference b/n session and cache Pin
NidhiKanu2-Feb-09 22:18
professionalNidhiKanu2-Feb-09 22:18 

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.