我想制作一个继承自 Gridview 但包含在 UpdatePanel 中的自定义服务器控件。像这样的东西:
Public Class CustomGridView
Inherits GridView
Protected Sub Render()
Dim wrapper As New UpdatePanel
MyBase.parent = wrapper
End Sub
End Class
我想制作一个继承自 Gridview 但包含在 UpdatePanel 中的自定义服务器控件。像这样的东西:
Public Class CustomGridView
Inherits GridView
Protected Sub Render()
Dim wrapper As New UpdatePanel
MyBase.parent = wrapper
End Sub
End Class