KaxProgressManagerApplyUniquePageIdentifier Method |
Adds KaxUrid=[GUID] parameter to the supplied URL.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string ApplyUniquePageIdentifier(
string url
)
Public Function ApplyUniquePageIdentifier (
url As String
) As String
public:
String^ ApplyUniquePageIdentifier(
String^ url
)
member ApplyUniquePageIdentifier :
url : string -> string
Parameters
- url
- Type: SystemString
Return Value
Type:
String
RemarksUse this method to generate proper URL for cross page postbacks
which will enable KaxMemoryOptimization and KaxProgressArea.
Examples
This example demonstrates how to set the PostBackUrl property of a button
in order to enable KaxMemoryOptimization and KaxProgressArea. This example
will postback to the current page, but you could use URL of your choice.
Button1.PostBackUrl = KaxProgressManager1.ApplyUniquePageIdentifier(Request.Url.PathAndQuery);
Button1.PostBackUrl = KaxProgressManager1.ApplyUniquePageIdentifier(Request.Url.PathAndQuery)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also