本文整理匯總了VB.NET中System.Web.UI.WebControls.Button.IPostBackEventHandler.RaisePostBackEvent方法的典型用法代碼示例。如果您正苦於以下問題:VB.NET Button.IPostBackEventHandler.RaisePostBackEvent方法的具體用法?VB.NET Button.IPostBackEventHandler.RaisePostBackEvent怎麽用?VB.NET Button.IPostBackEventHandler.RaisePostBackEvent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。
在下文中一共展示了Button.IPostBackEventHandler.RaisePostBackEvent方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: CustomButtonRaisePostBackEvent
<System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name:="FullTrust")> _
Public Class CustomButtonRaisePostBackEvent
Inherits System.Web.UI.WebControls.Button
Private message As String = System.String.Empty
Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)
' Render a HTML submit button.
writer.Write("<INPUT TYPE='submit' name='" + Me.UniqueID + "' value='Click Me' />")
writer.Write("<BR>" + message)
End Sub
' Note: VB.NET does not allow one to re-implement a base class interface, whereas C# does.
' Hence, just use the base class's PostBackEventHandler's RaisePostBackEvent method,
' which calls the OnClick method.
Protected Overrides Sub OnClick(ByVal e As System.EventArgs)
message = "RaisePostBackEvent method successful!"
End Sub
End Class
開發者ID:VB.NET開發者,項目名稱:System.Web.UI.WebControls,代碼行數:20,代碼來源:Button.IPostBackEventHandler.RaisePostBackEvent