T
TR
A company that lets affiliates search its database assumes that affiliates
will paste code, which looks something like this, into their web pages:
<form method="GET" name="search_5"
action="http://www.somedomain.com/articles/results.xml" target="_blank">
<!-- Hidden values to be passed to the stored proc -->
<input type="hidden" name="XTYPE" value="FR">
<input type="hidden" name="TG" value="1">
<input type="hidden" name="CRW" value="MOO">
....
How would this be done server-side with a WebRequest object? How would the
hidden input type values be supplied to the WebRequest that is created with
the "results.xml" URI ?
Dim WR as WebRequest =
WebRequest.Create(http://www.somedomain.com/articles/results.xml/)
'// supply hidden input values ?
Thanks
TR
will paste code, which looks something like this, into their web pages:
<form method="GET" name="search_5"
action="http://www.somedomain.com/articles/results.xml" target="_blank">
<!-- Hidden values to be passed to the stored proc -->
<input type="hidden" name="XTYPE" value="FR">
<input type="hidden" name="TG" value="1">
<input type="hidden" name="CRW" value="MOO">
....
How would this be done server-side with a WebRequest object? How would the
hidden input type values be supplied to the WebRequest that is created with
the "results.xml" URI ?
Dim WR as WebRequest =
WebRequest.Create(http://www.somedomain.com/articles/results.xml/)
'// supply hidden input values ?
Thanks
TR