S
sudhaoncyberworld
Hi all
i am using asp.net v2.0
In one of my page i am calling another page using xml http , this is
working fine but first time only ,
I am sending the request on click of button , when i click the button
second time, it's returning the previous response and it's not even
calling that page again, where could be the problem.
client side (aspx page 1- javascript)
var http=new ActiveXObject("Msxml2.XMLHTTP");
http.open("GET","Gensparql.aspx",false);
http.send();
if(http.readyState == 4)
{
if(http.responseText!=null && http.responseText!='' )
{
//my process
}
}
server side (aspx page 2)
Response.Clear();
Response.ContentType = "text/xml";
Response.Write(retVal);
Response.End();
//second time returning same previous output and not calling the aspx
page 2
Hope u understand my problem,i am in urgent, Thanks in advance
i am using asp.net v2.0
In one of my page i am calling another page using xml http , this is
working fine but first time only ,
I am sending the request on click of button , when i click the button
second time, it's returning the previous response and it's not even
calling that page again, where could be the problem.
client side (aspx page 1- javascript)
var http=new ActiveXObject("Msxml2.XMLHTTP");
http.open("GET","Gensparql.aspx",false);
http.send();
if(http.readyState == 4)
{
if(http.responseText!=null && http.responseText!='' )
{
//my process
}
}
server side (aspx page 2)
Response.Clear();
Response.ContentType = "text/xml";
Response.Write(retVal);
Response.End();
//second time returning same previous output and not calling the aspx
page 2
Hope u understand my problem,i am in urgent, Thanks in advance