2

我想给我的 gridview 加上一个标题,所以我做了以下事情:

<asp:GridView ID="gv_employee" runat="server" AllowPaging="True" AllowSorting="True"
        AutoGenerateColumns="False" Caption='<table width="100%" class="TestCssStyle"><tr><td class="text_Title"><asp:Label runat="server" Id="lbl_gv_title"></asp:Label></td><td><asp:ImageButton runat="server" id="ibtn_edit_master"  ImageUrl="~/Images/editsmall.png" ValidationGroup="G1"></asp:ImageButton></td></tr></table>'
        CssClass="forms" DataKeyNames="valueskey" HorizontalAlign="Center" OnPageIndexChanging="gv_inbox_PageIndexChanging"
        OnRowCommand="gv_inbox_RowCommand" OnRowDataBound="gv_inbox_RowDataBound" TabIndex="2"
        Width="600px">

    </asp:GridView>

我想访问我的gridview标题中的标签和图像按钮来设置标签的值并处理按钮的事件,以便我可以更改标签值。如何做到这一点?

4

1 回答 1

0

除了给asp控件标签和图像按钮,你可以给html控件元素作为标题。然后你可以分配divid.innerHtml=gridviewid.caption.Tostring(),你可以为那个输入元素按钮编写客户端脚本。

于 2013-05-17T05:09:28.740 回答