Click or drag to resize
KaxProgressManagerApplyUniquePageIdentifier Method
Adds KaxUrid=[GUID] parameter to the supplied URL.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public string ApplyUniquePageIdentifier(
	string url
)

Parameters

url
Type: SystemString

Return Value

Type: String
Remarks

Use 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);
See Also