如何在c#代码后面的gridview中将值绑定到超链接

时间:2013-02-01 06:10:21

标签: c# gridview binding hyperlink

我有一个自定义网格,我在后面的c#代码中绑定了数据。我给我的一个专栏提供了一个超链接字段。如果我单击超链接值,它应该导航到该超链接值的详细信息页面。代码如下,

  protected void grd_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            HyperLink myLink = new HyperLink();
            myLink.Text = e.Row.Cells[2].Text;
            e.Row.Cells[2].Controls.Add(myLink);
            myLink.NavigateUrl = "Estimation.aspx?EstimateID=" + EstimateID + "&VersionNo=" + VersionNo;
        }
    }

如果我单击该链接,页面将被导航,但我没有获得已在该页面中预先加载的详细信息。请给我关于如何纳入这个的建议。 感谢

4 个答案:

答案 0 :(得分:0)

您可以使用它来重定向,请阅读this

<asp:HyperLink ID="HyperLink1"   
               runat="server"   
               NavigateUrl="Default2.aspx">  
                 HyperLink  
</asp:HyperLink> 

添加带链接的属性只需添加

HyperLink1.Attributes.Add ("");

答案 1 :(得分:0)

您需要在RowDataBound事件中进行一些小改动

myLink.Attributes.Add(“href”,“your url”);

答案 2 :(得分:0)

您需要从网格行数据中获取EstimateIDVersionNo的值。看看GridViewRowEventArgs的文档,你会看到有.Row属性。

所以你的代码必须是:

myLink.NavigateUrl = "Estimation.aspx?EstimateID=" + e.Row.Cells[4].Text + "&VersionNo=" + e.Row.Cells[5].Text;

或者,您可能需要访问与网格行关联的数据项,在这种情况下,请查看e.Row.DataItem,GridViewRow.DataItem property。需要将此DataItem强制转换为您绑定到网格的数据类型,以便从中获取数据,这可能类似于:

((MyCustomDataRow)e.Row.DataItem).EstimateID

答案 3 :(得分:0)

尝试以下解决方案:

Page-1这是您的列表页面: ASPX代码:

<asp:GridView ID="GridView1" runat="server" 
        onrowdatabound="GridView1_RowDataBound">
    <Columns>
    <asp:TemplateField>
    <ItemTemplate>
        <asp:HyperLink ID="HyperLink1" runat="server">HyperLink</asp:HyperLink>
    </ItemTemplate>
    </asp:TemplateField>
    </Columns>
    </asp:GridView>

代码背后:

protected void Page_Load(object sender, EventArgs e)
    {
        List<Data> lstData = new List<Data>();
        for (int index = 0; index < 10; index++)
        {
            Data objData = new Data();
            objData.EstimateID = index;
            objData.VersionNo = "VersionNo" + index;
            lstData.Add(objData);
        }

        GridView1.DataSource = lstData;
        GridView1.DataBind();
    }

    public class Data
    {
        public int EstimateID { get; set; }
        public string VersionNo { get; set; }
    }
    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            HyperLink HyperLink1 = e.Row.FindControl("HyperLink1") as HyperLink;
            HyperLink1.NavigateUrl = "Details.aspx?EstimateID=" + e.Row.Cells[1].Text + "&VersionNo=" + e.Row.Cells[2].Text;
        }
    }

Page-2这是您的详细信息页面: 代码背后:

protected void Page_Load(object sender, EventArgs e)
    {
        Response.Write(Request.QueryString["EstimateID"].ToString());
        Response.Write(Request.QueryString["VersionNo"].ToString());
    }