gpt4 book ai didi

c# - 如何通过超链接字段传递变量背后的代码

转载 作者:太空狗 更新时间:2023-10-29 23:39:46 26 4
gpt4 key购买 nike

这是我在 C# 中隐藏的代码。

protected void Page_Load(object sender, EventArgs e)
{
Name = "Nitin";
}

我有一个 GridView,其中有一个 Hyperlinkfield。我想通过 HyperLinkField 从 C# 页面(代码后面的一个)发送 Name 到下一页,但它不是 BoundField 之一GridView(即我从 EntityDataSource 获得的)。这是我的 asp.net 代码。

代码:

   <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="Id" DataSourceID="WorkItemsEntityDataSource">
<Columns>
<asp:hyperlinkfield datatextfield="Id"
datanavigateurlfields="Id"
datanavigateurlformatstring="~\WorkItems.aspx?Id={0}"
headertext="Id"/>
<asp:BoundField DataField="Description" HeaderText="Description" SortExpression="Description" />
<asp:BoundField DataField="TFSId" HeaderText="TFSId" SortExpression="TFSId" />
<asp:CheckBoxField DataField="IsBillable" HeaderText="IsBillable" SortExpression="IsBillable" />
</Columns>
</asp:GridView>

最佳答案

您也可以像这样从代码后面传递导航 URL

在 Aspx 页面中

              <asp:TemplateField>
<ItemTemplate>
<asp:HyperLink ID="hyp" runat="server" Text="Navigation"></asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>

在代码隐藏的用户 GridView 数据绑定(bind)事件中是这样的

protected void grddata_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
int ID = Convert.Int32(DataBinder.Eval(e.Row.DataItem, "ID"));
HyperLink hyp = (HyperLink)e.Row.FindControl("hyp");
hyp.NavigateUrl = "Test.aspx?Name='" + Request.QueryString["test"] + "'&&ID"+ ID +"";
}
}

我想这对你有帮助...

关于c# - 如何通过超链接字段传递变量背后的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15923521/

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