|
ClientSideExtensionsSetSubmitOnce Method
|
Registers the button to be disabled after one click to prevent multiple postbacks.
Namespace: GSF.Web.UIAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.230-beta
Syntaxpublic static void SetSubmitOnce(
this Button button
)
<ExtensionAttribute>
Public Shared Sub SetSubmitOnce (
button As Button
)
public:
[ExtensionAttribute]
static void SetSubmitOnce(
Button^ button
)
[<ExtensionAttribute>]
static member SetSubmitOnce :
button : Button -> unit
GSF.Web.UI.ClientSideExtensions.SetSubmitOnce = function(button);
View SourceParameters
- button Button
- Button for which submit once script is to be registered.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Button. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also