Link to home
Start Free TrialLog in
Avatar of testn1
testn1

asked on

request xml post

I have a c# application that is posting data to an ASPX page.  I was wondering how to request the posted data.  It is not coming from a form, so Request.Form won't work (I don't think)

thanks.
Avatar of SeanStapleton
SeanStapleton

I assume the application is independent of the aspx?

Web pages generally accept external data in two ways:  GET or POST. As such, I suspect you'll find the data in Request.Form or Request.QueryString. Is the application developer able to provide any information about how the http request is formed?  There are a number of other possibilites such as web services, etc...

Sean.

ASKER CERTIFIED SOLUTION
Avatar of SeanStapleton
SeanStapleton

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial