ASP VB.net如何避免在网格视图中以编程方式创建的链接按钮单击时刷新整页

问题描述

enter image description here我创建了一个Gridview控件,并以编程方式在每行中用一个链接按钮填充它。每次单击链接按钮,都会刷新整页。

我的HTML代码

<body>
    <form id="form1" runat="server">
      <updatepanel  id="upGVUpdate" runat="server" >
    <table width ="100%">
        <tr align ="center" >
            <td><asp:GridView ID="gv" runat="server"/></td>
        </tr>
    </table>
      </updatepanel>    
    </form>
</body>
</html>

后面的代码

Protected Sub gv_RowDataBound(ByVal sender As Object,ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gv.RowDataBound
    If e.Row.RowType = DataControlRowType.DaTarow Then
        Dim lbUpdate = New LinkButton
        lbUpdate.ID = "Update_" & e.Row.Cells(1).Text
        lbUpdate.Text = "Update"
        AddHandler lbUpdate.Click,AddressOf Update_Clicked
        e.Row.Cells(3).Controls.Add(lbUpdate)
    End If
End Sub

并且网格视图为

由于“网格”视图中的实际数据行太多,因此在单击链接按钮(更新)并不必要地刷新整个页面后,会花费大量时间。

请帮助避免这种情况。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)