Click or drag to resize

EAPCtrlUtilsPostInfoSet Method

Set a name/value item to the eapPostInfo control in the page's form. If the control does not already exist in the form it will be added. If the named item already exists in the control's value, the value will be updated, otherwise it will be added. Values in that control are automatically logged to the devlog and xot_request_log if/when the page is posted back. The most important use for this is for tracking which PageElement within a wizard page is being posted back. Use PostInfoGet(Page, String) to retrieve a particular value.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static void PostInfoSet(
	Page page,
	string name,
	string val
)

Parameters

page
Type: System.Web.UIPage
The current page.
name
Type: SystemString
The name of the item to set.
val
Type: SystemString
The value to set.
See Also