Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

xmlhttprequest in asp.net 1

Status
Not open for further replies.

ITking2009

Programmer
Aug 4, 2009
23
US
hi,
I need to convert a vb6 app to c#/asp.net application. One of the functions in that app is to send an xml to a server. I didnt know how to proceed so thought of checking with the experts
Here' the vb code

Set XMLHttpRequest = New MSXML2.XMLHTTP40
XMLHttpRequest.Open "GET", g_FeedURL, True, sUsername, sPassword

XMLHttpRequest.setRequestHeader "Synchronous", "False"
XMLHttpRequest.setRequestHeader "Content-Type", "text/xml"
XMLHttpRequest.setRequestHeader "Accept-Language", "en-US"
dtStart = Now
XMLHttpRequest.send

any help is appreciated.
thanks.
 
Thanks Mark....thats what i was looking for. I'll use it and hopefully shouldn't run into anything.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top