how to refresh response of xml?

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
Below is my asp page in the server
<div style="color:Black;background-color:White; <pre>
http://test.com/Request.asp
[/code]
<div style="color:Black;background-color:White; <pre>
Below code is in the request.asp page<span style="color:Blue; <<span style="color:#A31515; br<span style="color:Blue; /><span style="color:Blue; <<span style="color:#A31515; br<span style="color:Blue; />pXML= Product_Request<span style="color:Blue; <<span style="color:#A31515; br<span style="color:Blue; />set http = Server.CreateObject("Microsoft.XMLHTTP")<span style="color:Blue; <<span style="color:#A31515; br<span style="color:Blue; />http.Open "POST", "http://test.com/Response.asp?xml_request=" & pXML , true<span style="color:Blue; <<span style="color:#A31515; br<span style="color:Blue; />http.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"<span style="color:Blue; <<span style="color:#A31515; br<span style="color:Blue; />http.send<span style="color:Blue; <<span style="color:#A31515; br<span style="color:Blue; />http_response = http.responseText<span style="color:Blue; <<span style="color:#A31515; br<span style="color:Blue; />response.write http_response
[/code]
request goes to the below page (in same server)
<div style="color:Black;background-color:White; <pre>
http://test.com/Response.asp
[/code]
<div style="color:Black;background-color:White; <pre>
response.write "<span style="color:Blue; <<span style="color:#A31515; Message<span style="color:Blue; >First<span style="color:Blue; <<span style="color:#A31515; Message<span style="color:Blue; >"<span style="color:Blue; <<span style="color:#A31515; br<span style="color:Blue; /><span style="color:Blue; <<span style="color:#A31515; br<span style="color:Blue; />
[/code]
Every time response is coming same why?
For example, if i update
<div style="color:Black;background-color:White; <pre>
"<span style="color:Blue; <<span style="color:#A31515; Message<span style="color:Blue; >First<span style="color:Blue; <<span style="color:#A31515; Message<span style="color:Blue; >"
[/code]
to
<div style="color:Black;background-color:White; <pre>
"<span style="color:Blue; <<span style="color:#A31515; Message<span style="color:Blue; >Second<span style="color:Blue; <<span style="color:#A31515; Message<span style="color:Blue; >"
[/code]

sd

View the full article
 

Similar threads

D
Replies
0
Views
104
Donald Uko
D
P
Replies
0
Views
126
programmervb.net
P
D
Replies
0
Views
73
Donald Uko
D
D
Replies
0
Views
103
Donald Uko
D
Back
Top