本文整理汇总了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