Forum Moderators: open

Message Too Old, No Replies

http post without response.redirect

and on chillsoft

         

mcavill

8:09 pm on Sep 3, 2003 (gmt 0)

10+ Year Member



hi - i need to post some variables to another site but don't want to redirect, and i cannot install anything on the server - is this mission impossible...

davemarks

8:15 pm on Sep 3, 2003 (gmt 0)

10+ Year Member



Don't know if server.transfer will let you attach a querystring...

Might be worth looking up

mcavill

8:23 pm on Sep 3, 2003 (gmt 0)

10+ Year Member



thanks for the response - just tried it, but i don't think chillsoft supports it :( - might be time to move hosts...

davemarks

2:58 pm on Sep 4, 2003 (gmt 0)

10+ Year Member



you may need to look it up, it might be response.transfer

I can't remember of hand and don't have the time to look, sorry

If you mainly programming in ASP then I would fully suggest you move to a windows host... As you get the best support for asp, and asp.net hopefully along with any associated com objects you may want to use with asp

plumsauce

9:23 pm on Sep 8, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member




You will not get this to work on a native iis server
either. The reference must be local to the server.

Another option available to you is to do the post
on behalf of the client by accepting the data and
doing a xml.http thing.( I forgot the actual name)

In other words, you are proxying the request on
behalf of the client.

+++

RossWal

11:42 pm on Sep 9, 2003 (gmt 0)

10+ Year Member



I second what plumsauce says. Look in mSDN for xmlhttp or httpxml. Also, it can be loaded via activex in IE. In otherwords you use JavaScript to do the post from the client.