本文介绍了将datagridview的列类型更改为linkcolumn.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以将datagridview的列类型更改为linkcolumn.
实际上我在数据集中有3列绑定到datagridview.我
需要将第二列显示为链接列.我需要在
实现
运行.有可能吗?
问候,
Karthick V
Hi,
Is it possible to change the column type of a datagridview to linkcolumn.
Actually i have 3 columns in the dataset which i''m binding to datagridview. I
need the second column to be displayed as link column. I need to achieve this at
run-time. Is it possible??
Regards,
Karthick V
推荐答案
<asp:GridView ID="grdProductList" runat="server" Width="100%" GridLines="None" AllowPaging="True">
<HeaderStyle HorizontalAlign="Center" />
<Columns>
<asp:TemplateField HeaderText="Special Price">
<ItemStyle Width="20%" HorizontalAlign="center" />
<ItemTemplate>
<asp:HyperLink runat="server" ID="hylnk_SpecialPrice" NavigateUrl='<%# "SpecialPrice.aspx?ProductID=" + Eval("iProductID") %>'
Text="Add/Edit"></asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
这篇关于将datagridview的列类型更改为linkcolumn.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!