posting data
-
Hi everybody! I wan to post some datas to asp page. How can i do this?Can u give examples? Please help me! Thanks...
-
Hi everybody! I wan to post some datas to asp page. How can i do this?Can u give examples? Please help me! Thanks...
this is not the place 2 post this. u shud have done it in asp.net column. btw what xactly u need, r u a beginr, u just need some data 2 be posted to the asp page on the server? if so <form> - </form> in html will do. otherwise if u need some data to be posted to an asp page on the server thru a non-explorer client app.. then use the
XMLHTTP
class provided with msxml.dll. Load ur data into an xml dom, call theopen
method of xmlhttp by passing the url of the asp page, and finally call thesend
method of xmlhttp by passing the dom object which loaded with ur data to be posted. rgds...mil10. -
this is not the place 2 post this. u shud have done it in asp.net column. btw what xactly u need, r u a beginr, u just need some data 2 be posted to the asp page on the server? if so <form> - </form> in html will do. otherwise if u need some data to be posted to an asp page on the server thru a non-explorer client app.. then use the
XMLHTTP
class provided with msxml.dll. Load ur data into an xml dom, call theopen
method of xmlhttp by passing the url of the asp page, and finally call thesend
method of xmlhttp by passing the dom object which loaded with ur data to be posted. rgds...mil10. -
I have an application that is written vc++.It displays system informations and i want to post this information to asp page, server. How can i do this?:( Thanks...
ok, then its better u go 4 XMLHTTP. go thru some sample prgms fo xmlhttp methods
Open
andSend
. rgds..mil10 -
ok, then its better u go 4 XMLHTTP. go thru some sample prgms fo xmlhttp methods
Open
andSend
. rgds..mil10Hi, From what I understand you want to send data to an asp page through the query string from a C++ application, right? If that is the case then use the class CInternetSession. You will find the OpenURL() method of this class useful in sending the data to the asp page through the query string. Regards, Mahadevan.