tags:

views:

11

answers:

1

Hello,

I could use xmlhttp and asptear or any other components to post data to external sites on WINDOWS 2003(iis 6).

not i am using 2008 server(iis 7) and i can't get worked that components to send data.

could you please guide me ?

(PS. components are tearing the pages but don't send post data, seems like tear as GET method)

+1  A: 

You want to post from a server-side language running on IIS? ASPTear is for classic ASP so assuming that:

ASPTear supports POST, it just defaults to GET.

You could also use "Msxml2.ServerXMLHTTP" (example).

Alex K.