EAPCtrlUtilsPostInfoGet Method |
Retrieve the value of the named item from the
eapPostInfo control in the page's form.
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
PostInfoSet(Page, String, String) to set a particular value.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static string PostInfoGet(
Page page,
string name
)
Public Shared Function PostInfoGet (
page As Page,
name As String
) As String
Parameters
- page
- Type: System.Web.UIPage
The current page. - name
- Type: SystemString
The name of the item to get.
Return Value
Type:
StringThe item's value, if found, else an empty string.
See Also