标签: asp.net updatepanel custom-server-controls
我想创建一个继承自Gridview的自定义服务器控件,但它包含在UpdatePanel中。像这样:
Public Class CustomGridView Inherits GridView Protected Sub Render() Dim wrapper As New UpdatePanel MyBase.parent = wrapper End Sub End Class