Click or drag to resize

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
)

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: String
The request data in application/x-www-form-urlencoded format.
Remarks
See How postback works in ASP.NET for a good overview on the topic.
See Also