Why cannot I do this? in an asp site www.Site1.com page, I have this: <% response.redirect "http://www.Site2.com?a=1" %> when it is redirected, I always see it as if it were: http://www.Site2.com It drops/strips off the paramaters. Please respond asap.....my website is not functioning because of this How else can I redirect from one domain to another "with" parameters?
Not sure but my first thought would be to try http://www.site2.com/?a=1 to ask explicitely for the default page (note the extra /). If I remember when not using a trailing / there is an extra step involved for getting the default document. This extra step could be what clears the querystring parameter... -- Patrice "Travis McGee" a écrit dans le message de groupe de discussion : ef5iPNl1IHA.5832@TK2MSFTNGP02.phx.gbl... > Why cannot I do this? > > in an asp site www.Site1.com page, I have this: > <% response.redirect "http://www.Site2.com?a=1" %> > > when it is redirected, I always see it as if it were: > http://www.Site2.com > It drops/strips off the paramaters. > > Please respond asap.....my website is not functioning because of this > > How else can I redirect from one domain to another "with" parameters? >