gpt4 book ai didi

c# - 在 Gridview 中获取 TemplateFields 的值

转载 作者:行者123 更新时间:2023-11-30 17:21:54 25 4
gpt4 key购买 nike

我在获取模板字段的值时遇到问题; Gridview在ContentPlaceHolder1中;

我试图在 GridView1_RowCreated 事件中获取值

int RowIndex = GridView1.Rows.Count - 1;
GridView1.Rows[RowIndex].Cells[0].Text = " " + AltKatLinkler;

但是这段代码返回 null 或空。

有我的专栏,专栏索引为0。注意:我使用 SqlDataSource 填充 GridView。没有问题,我可以在浏览器中看到行内容,但我无法从代码隐藏访问。

<asp:templatefield headertext="Haberler" sortexpression="KategoriID" xmlns:asp="#unknown">
<ItemTemplate>
< a href='<%# "KategoriGoster.aspx?KategoriID=" + Eval("KategoriID")%>'>
<%# Eval("KategoriAd")%>
<%# Eval("Açıklama")%>
</ItemTemplate>
</asp:TemplateField>

最佳答案

另一种方法

<asp:templatefield headertext="Haberler" sortexpression="KategoriID" xmlns:asp="#unknown">
<ItemTemplate>
< a href='<%# "KategoriGoster.aspx?KategoriID=" + Eval("KategoriID")%>'>
<asp:Label ID="lbKategori" runat="server" Text='<%# Eval("KategoriAd").ToString() %>'></asp:Label>
<asp:Label ID="lbAçıklama" runat="server" Text='<%# Eval("Açıklama").ToString() %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>

代码隐藏

   protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{

var lbKategori = e.Row.FindControl("lbKategori") as Label;
var lbAçıklama = e.Row.FindControl("lbAçıklama") as Label;
}
}

关于c# - 在 Gridview 中获取 TemplateFields 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3100172/

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