
March 9th, 2000, 03:50 PM
|
|
Contributing User
|
|
Join Date: Dec 2002
Posts: 14,575
  
Time spent in forums: < 1 sec
Reputation Power: 22
|
|
|
<i><b>Originally posted by : Bill (bill@gamespy.com)</b></i><br />Dim strTest<br />strTest = "this is a test"<br /><br />response.redirect "www.zzz.com/b.asp?test=" & strTest<br />-----------------------------<br />in b.asp<br /><br />Dim strTest: strTest = Request("test")<br /><br /><br />Response.Write strTest & VBCRLF<br />-----------------------------<br />strtest will now hold the value from the original page<br /><br /><br />------------<br />bhavesh at 3/7/2000 6:29:05 PM<br /><br />I want to pass variable from one asp page (which is at one domain (www.abc.com/a.asp) ) to another asp page (which is at another domain (www.zzz.com/b.asp)).When I use <br /><br />response.redirect "www.zzz.com/b.asp" <br /><br />b.asp doesn't get variable from first page.what should I do? <br /><br /><br />
|