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.asp x",false);
http.send();
if(http.readySt ate == 4)
{
if(http.respons eText!=null && http.responseTe xt!='' )
{
//my process
}
}
server side (aspx page 2)
Response.Clear( );
Response.Conten tType = "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.asp x",false);
http.send();
if(http.readySt ate == 4)
{
if(http.respons eText!=null && http.responseTe xt!='' )
{
//my process
}
}
server side (aspx page 2)
Response.Clear( );
Response.Conten tType = "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
Comment