NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

CustomValidator ServerValidationFunction Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the ServerValidationFunction event.

[Visual Basic]
Protected Sub CustomValidatorName_ServerValidationFunction( _
   ByVal sender As Object, _
   ByVal e As ServerValidationFArgs _
)
[C#]
protected void CustomValidatorName_ServerValidationFunction(
   object sender,
   ServerValidationFArgs e
);
[C++]
protected: void CustomValidatorName_ServerValidationFunction(
   Object* sender,
   ServerValidationFArgs* e
);
[JScript]
protected CustomValidatorName_ServerValidationFunction(
   sender : Object,
   e : ServerValidationFArgs
);

Parameters

sender
The source of the event.
e
A ServerValidationFArgs that contains the event data.

See Also

CustomValidator Class | CustomValidator MembersTopic | System.Web.UI.WebControls Namespace