当前位置: 代码迷 >> ASP.NET >> GridView双击事件,该怎么解决
  详细解决方案

GridView双击事件,该怎么解决

热度:3570   发布时间:2013-02-25 00:00:00.0
GridView双击事件
双击GridView中的一行 打开新页,同时取得选中行的文本 转给新页

百度了很多 都用不了

高手说清楚点吧

QQ远程 交下吧

1615128878

------解决方案--------------------------------------------------------
HTML code
        <asp:GridView ID="GridView1" runat="server"             onrowdatabound="GridView1_RowDataBound">            <Columns>                <asp:TemplateField>                   <ItemTemplate>                       <asp:Label ID="lblText" runat="server" Text="Label"></asp:Label>                   </ItemTemplate>                </asp:TemplateField>            </Columns>        </asp:GridView>
  相关解决方案