HtmlFormBuildAspxPostBackRequest Method |
Builds the request data to be used to submit an ASPX form.
Namespace:
NScrape.Forms
Assembly:
NScrape (in NScrape.dll) Version: 0.4.1.0
Syntax protected string BuildAspxPostBackRequest(
string eventTargetValue,
string eventArgumentValue
)
Protected Function BuildAspxPostBackRequest (
eventTargetValue As String,
eventArgumentValue As String
) As String
protected:
String^ BuildAspxPostBackRequest(
String^ eventTargetValue,
String^ eventArgumentValue
)
member BuildAspxPostBackRequest :
eventTargetValue : string *
eventArgumentValue : string -> string
Parameters
- eventTargetValue
- Type: SystemString
Contains the value for __EVENTTARGET, the control doing the submission. - eventArgumentValue
- Type: SystemString
Contains the value for __EVENTARGUMENT, any additional information.
Return Value
Type:
StringThe request data in
application/x-www-form-urlencoded format.
Remarks See Also