5

这是我在 C# 中的代码。

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

我有一个 GridView,其中有一个 Hyperlinkfield。我想Name通过 HyperLinkField 从 C# 页面(代码后面的一个)发送到下一页,但它不是 GridView 的 BoundField 之一(即我从 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>
4

4 回答 4

3

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

在 Aspx 页面中

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

在像这样的用户网格视图数据绑定事件背后的代码中

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 +"";
        }
    }

我想这会帮助你...

于 2013-04-10T11:01:19.023 回答
0

我不确定实际上是否在数据绑定控件中使用它,但是您正在构建的 url 肯定不包含 QueryString 参数“名称”。它应该如下所示:

~\WorkItems.aspx?Id={0}&Name={1}

如果不需要 Id,只需将 Id 替换为 Name:

~\WorkItems.aspx?Name={0}

至于替换-我不知道您的数据对象具有哪些属性以及如何绑定到它们。我认为你没有问题,因为绑定到 Id 工作(可能)。

更新

如果 Name 没有从数据源返回,您应该创建包含 Name 字段的新实体,或者使用一些常量名称,就像您在页面中声明的一样(不确定是否应该在每一行中显示相同的名称)。第二个选项可以这样实现:

~\WorkItems.aspx?Id={0}&Name=<%= Name %>
于 2013-04-10T10:43:54.183 回答
0

您可以使用:

<asp:TemplateField HeaderText="test">
     <ItemTemplate>
           <asp:HyperLink runat="server" ID="temp" NavigateUrl='<%# String.Format("~\WorkItems.aspx?Id={0}&Name={1}",  Eval("Name"), Name)%>' ></asp:HyperLink>
      </ItemTemplate>
</asp:TemplateField>
于 2013-04-10T12:46:57.927 回答
0

您可以通过执行以下操作修改 aHyperLinkField的 url:

protected void pendingAccountsGrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        ((HyperLink) e.Row.Cell[0].Controls[0]).NavigateUrl = "http://stackoverflow.com";
    }
}

只需更改它以在e.Row.Cell[0].

于 2014-07-17T16:48:36.133 回答