DWExtranetAction
Version: - stringSummary
Returns the URL for the page that handles extranet form submission.
Settings
The value is generated automatically based on the current page
Remarks
The URL
can be assigned to the <form>
action attribute.
The value can be used for both Login and New Password prompts.
Examples
Outputting the template tag
@GetString("DWExtranetAction")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("DWExtranetAction"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("DWExtranetAction");
}
Outputting the template tag
<!--@DWExtranetAction-->
Check if string has a value
<!--@If Defined(@DWExtranetAction)-->
Let's output this tag here: <strong><!--@DWExtranetAction--></strong>
<!--@EndIf(@DWExtranetAction)-->