gridview链接按钮在其他列中不起作用

时间:2016-05-11 06:21:17

标签: c# asp.net

我有一个GridView,其中有一些列:

<asp:TemplateField HeaderText="Approved">
    <ItemTemplate>
        <i class="icon-edit icon-white" style="position: absolute;
            margin-left: 10px; margin-top: 7px;"></i>
        <a href="#" id="Button1" class="btn btn-success"><p>Loan Calculation</p></a>
        <asp:Button ID="btnapp" runat="server" Text="Approved" CommandName="Approved"
            CommandArgument='<%#Eval("rcno")+ "," +Eval("mobile")+ "," +Eval("email") %>'
            class="btn btn-success" />
    </ItemTemplate>
</asp:TemplateField>

View of the columns

此功能仅在一列中成功完成,而不是在另一列中

1 个答案:

答案 0 :(得分:1)

您可以使用Hyperlink链接GridView中的列。

请检查以下示例:

<asp:Hyperlink ID="Hyperlink2" CssClass="control" runat="Server"
    NavigateUrl='<%#Bind("link")%>' Text='<%#Bind("Title")%>'>
</asp:Hyperlink>