|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I am trying to pass a url with a lot of information embedded in it, through a redirect script built for frames. (i've stripped down all unessential code for viewing)
The link is supposed to be this: URL passed through my script like this: redirect.asp?url=http://www.realtor.com/FindHome/HomeListings.asp?mlsttl=&frm=bymap&pgnum=1&mls=xmls&lnksrc=REALRSCF2C0002&js=on&poe=realtor&st=fl&ct=titusville&areaid=87711&typ=1&typ=2&mnprice=50000&mxprice=99999999&mnbed=1&mnbath=1&mnsqft=600&ss_fthb=n%2Fa&ss_mitm=n%2Fa BUT It doesn't pass any of the link information through. What do I need to do? Listed below are the two scripts we are playing with... -Nick ------------------------------------------------------ REDIRECT.ASP <% Dim url url=Request("url") %> <frameset border=0 rows=51,*> <frame name=main src="redirect_go.asp?url=<%=url%>"> </frameset> ------------------------------------------------------- REDIRECT_GO.ASP <% Dim url url=Request("url") if url="" Then url="http://www.whatever.com/" End If Response.Redirect url %> |
|
#2
|
|||
|
|||
|
this is the url, sorry:
hllp://www.realtor.com/FindHome/HomeListings.asp?mlsttl=&frm=bymap&pgnum=1&mls=xmls&lnksrc=REALRSCF2C0002&js=on&poe=realtor&st=fl&ct=titusville&areaid=87711&typ=1&typ=2&mnprice=50000&mxprice=99999999&mnbed=1&mnbath=1&mnsqft=600&ss_fthb=n%2Fa&ss_mitm=n%2Fa |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ASP Programming > Redirect Script: URL won't pass variables? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|