Click here to Skip to main content
15,914,820 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionthe state information is invalid for this page and might be corrupted. Pin
NidhiKanu1-Mar-09 23:31
professionalNidhiKanu1-Mar-09 23:31 
AnswerRe: the state information is invalid for this page and might be corrupted. Pin
Vimalsoft(Pty) Ltd1-Mar-09 23:38
professionalVimalsoft(Pty) Ltd1-Mar-09 23:38 
GeneralRe: the state information is invalid for this page and might be corrupted. Pin
NidhiKanu2-Mar-09 0:04
professionalNidhiKanu2-Mar-09 0:04 
GeneralRe: the state information is invalid for this page and might be corrupted. Pin
Vimalsoft(Pty) Ltd2-Mar-09 0:08
professionalVimalsoft(Pty) Ltd2-Mar-09 0:08 
Questionfile have to save on existing file name..., Pin
Member 38798811-Mar-09 23:26
Member 38798811-Mar-09 23:26 
AnswerRe: file have to save on existing file name..., Pin
Vimalsoft(Pty) Ltd1-Mar-09 23:33
professionalVimalsoft(Pty) Ltd1-Mar-09 23:33 
Questionpaging in repater control which is in inside the accordion control? Pin
Member 38798811-Mar-09 23:04
Member 38798811-Mar-09 23:04 
QuestionActiveX in Mozila is not working Pin
Rajeesh MP1-Mar-09 23:02
Rajeesh MP1-Mar-09 23:02 
Dear All
i M loading a xml file from javascript..that is working in IE. but its not working Mozila..
this is the code

function importXML()
    {
	    if (document.implementation && document.implementation.createDocument)
	    {
	        xmlDescription = document.implementation.createDocument("", "", null);
		    xmlDescription.onload = getDescription;
		    
		    xmlDoc = document.implementation.createDocument("", "", null);
		    xmlDoc.onload = getData;
	    }
	    else if (window.ActiveXObject)
	    {
	        xmlDescription = new ActiveXObject("Microsoft.XMLDOM");
		    xmlDescription.onreadystatechange = function ()
		    {
			    if (xmlDescription.readyState == 4) getDescription()
		    };
		    
		    xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
		    xmlDoc.onreadystatechange = function ()
		    {
			    if (xmlDoc.readyState == 4) getData()
		    };
 	    }
	    else
	    {
		    alert('Your browser can\'t handle this script');
		    return;
	    }
	    xmlDescription.load("details.xml");
	    xmlDoc.load("settings.xml");
    }



becouse of activex controls is not working in Mozila...
any solution for that to including activex control in mozila....?????
or any alternate way to load xml file from javasript..??????

Please....
Regards
Rajeesh MP
AnswerRe: ActiveX in Mozila is not working Pin
N a v a n e e t h1-Mar-09 23:20
N a v a n e e t h1-Mar-09 23:20 
GeneralRe: ActiveX in Mozila is not working Pin
Rajeesh MP2-Mar-09 1:19
Rajeesh MP2-Mar-09 1:19 
QuestionMs Outlook Application integration with ASP.NET VB. Pin
hits20091-Mar-09 22:37
hits20091-Mar-09 22:37 
QuestionHow to Export DataSet to Microsoft Access Database Pin
ballameharmurali1-Mar-09 22:28
ballameharmurali1-Mar-09 22:28 
AnswerRe: How to Export DataSet to Microsoft Access Database Pin
Vimalsoft(Pty) Ltd1-Mar-09 22:38
professionalVimalsoft(Pty) Ltd1-Mar-09 22:38 
GeneralRe: How to Export DataSet to Microsoft Access Database Pin
ballameharmurali1-Mar-09 22:49
ballameharmurali1-Mar-09 22:49 
GeneralRe: How to Export DataSet to Microsoft Access Database Pin
Vimalsoft(Pty) Ltd1-Mar-09 22:58
professionalVimalsoft(Pty) Ltd1-Mar-09 22:58 
GeneralRe: How to Export DataGrid to MS-Access Pin
ballameharmurali1-Mar-09 23:37
ballameharmurali1-Mar-09 23:37 
GeneralRe: How to Export DataGrid to MS-Access Pin
Vimalsoft(Pty) Ltd1-Mar-09 23:45
professionalVimalsoft(Pty) Ltd1-Mar-09 23:45 
GeneralRe: How to Export DataGrid to MS-Access Pin
ballameharmurali1-Mar-09 23:56
ballameharmurali1-Mar-09 23:56 
QuestionWeb config? Pin
Karthick_gc1-Mar-09 22:08
Karthick_gc1-Mar-09 22:08 
AnswerRe: Web config? Pin
N a v a n e e t h1-Mar-09 22:14
N a v a n e e t h1-Mar-09 22:14 
AnswerRe: Web config? Pin
Kunal Pawar1-Mar-09 22:22
Kunal Pawar1-Mar-09 22:22 
AnswerRe: Web config? Pin
Vimalsoft(Pty) Ltd1-Mar-09 22:40
professionalVimalsoft(Pty) Ltd1-Mar-09 22:40 
GeneralRe: Web config? Pin
Karthick_gc1-Mar-09 23:18
Karthick_gc1-Mar-09 23:18 
GeneralRe: Web config? Pin
Vimalsoft(Pty) Ltd1-Mar-09 23:28
professionalVimalsoft(Pty) Ltd1-Mar-09 23:28 
QuestionHow custom control's event could call a script callback Pin
sizers1-Mar-09 21:01
sizers1-Mar-09 21:01 

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.