UniqueFilePathSuffix Property

Returns a unique key that can be added to generate a unique URL for the same page.

public string UniqueFilePathSuffix {
   get
}

Remarks

Some mobile browsers require a unique URL to work properly.

Example

The following example demonstrates how to use of the UniqueFilePathSuffix property to display the unique file path suffix for the current page.

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
   Label1.Text = Label1.MobilePage.UniqueFilePathSuffix
End Sub

[C#]

public void Page_Load(Object sender, EventArgs e)
{
  Label1.Text = Label1.MobilePage.UniqueFilePathSuffix;
}   

See Also

Applies to: MobilePage Class