gpt4 book ai didi

.net - ASP.net 2.0 GridView Columns 取决于绑定(bind)结果集中的多个列

转载 作者:行者123 更新时间:2023-12-04 07:11:23 25 4
gpt4 key购买 nike

我正在使用绑定(bind)到 sql 查询结果的 ASP.net 2.0 GridView 控件,所以它看起来像这样:

<asp:GridView ID="MySitesGridView" runat="server" AutoGenerateColumns="False" DataSourceID="InventoryDB" AllowSorting="True" CellPadding="4" ForeColor="#333333" GridLines="None" OnRowCommand="GridView1_RowCommand" OnRowDataBound="siteRowDataBound">
<Columns>
<asp:BoundField DataField="Server" HeaderText="Server"/>
<asp:BoundField DataField="Customer" HeaderText="Customer" SortExpression="Customer" />
<asp:BoundField DataField="PublicIP" HeaderText="Site Address" DataFormatString="&lt;a href='http://{0}/foo'&gt;Go To Site&lt;/a&gt;" />
</Columns>
</asp:GridView>

如您所见,我使用格式字符串在其中一列(绑定(bind)到 PublicIP 字段的列)中显示带有地址的链接:
&lt;a href='http://{0}/foo'&gt;Go To Site&lt;/a&gt;

这就是问题所在:我需要使用结果集中的其他列之一以及链接中的 PublicIP 列,但我不知道如何使其可用于我的格式字符串。我基本上需要将该列绑定(bind)到结果集中的两列。为了澄清,我需要类似的东西:
&lt;a href='http://{0}/{1}'&gt;Go To Site&lt;/a&gt;

其中 {1} 是我的另一列的值。有没有办法干净地完成这个(即使它不使用格式字符串)?我也研究过使用 TemplateFields,但也看不到使用它们的简单方法。

最佳答案

模板字段是要走的路。

我通常更喜欢在页面中有一个私有(private)字符串函数,我传递几个对象变量,并计算结果字符串。

<a href="<%# CalculateUrl(Eval("PublicIP"), Eval("Customer")) %>">site</a>

在代码隐藏中:
private string CalculateUrl(object PublicIP, object Customer)
{
if (PublicIP==null || PublicIP==DBNull.Value)
return "";
if (Customer==null || Customer==DBNull.Value)
return "";
return "http://" + PublicIP.ToString() + "/" + Customer.ToString();
}

优点是该函数可以在公共(public)父类中共享,或者作为实用程序类的静态公共(public)函数。

关于.net - ASP.net 2.0 GridView Columns 取决于绑定(bind)结果集中的多个列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/282308/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com