This documentation is for the old version. Go to the latest Graphics Mill docs

BitmapViewer.LoadPostData Method

Processes the postback data for the BitmapViewer control.

Namespace: Aurigma.GraphicsMill.AjaxControls
Assembly: Aurigma.GraphicsMill.AjaxControls (in Aurigma.GraphicsMill.AjaxControls.dll)

Syntax

Visual Basic
Protected Overrides Function LoadPostData ( _
	postDataKey As String, _
	postCollection As NameValueCollection _
) As Boolean
C#
protected override bool LoadPostData(
	string postDataKey,
	NameValueCollection postCollection
)

Parameters

postDataKey

Type: System.String

The index within the posted collection that references the content to load.
postCollection

Type: System.Collections.Specialized.NameValueCollection

The collection posted to the server.

Return Value

true if the posted content is different from the last posting; otherwise, false.

Remarks

The LoadPostData(String, NameValueCollection) method is used primarily by control developers.

The LoadPostData(String, NameValueCollection) method checks if the postback data of the BitmapViewer control is different from its previous value, and if so, loads the content and returns true.

See Also

Reference