开发者

Set Gridview DataNavigateUrlFormatString Dynamically inside User Control(ASCX)

开发者 https://www.devze.com 2023-03-15 16:54 出处:网络
i have a issue that i dont know if it can be done. i have anin an aspx page , that loads dedpends on user activity a user control (ascx).

i have a issue that i dont know if it can be done.

i have an in an aspx page , that loads dedpends on user activity a user control (ascx).

the user control has a gridview which one of my columns are hyperlink.

<asp:HyperLinkField  DataNavigateUrlFormatString='<%page %>'
        DataTextField="ReqId" HeaderText="Request No." DataNavigateUrlFields="ReqId" />

i want that on click of that开发者_如何学运维 hyperlink , it will direct to the same page with parameters, but i cant do it right. for some reason so i tried this one:

<%string page = Page.Request.Path + "reqid={0}"; %>

but in the page the link refers to %page% as a string . can someone pls direct me how to it.

p.s it used to work when it was like that and the ascx was in root folder of the solution, the problem start when i moved all my controls to a folder in the root named "Controls"

<asp:HyperLinkField  DataNavigateUrlFormatString="?reqid={0}"
        DataTextField="ReqId" HeaderText="מספר בקשה" DataNavigateUrlFields="ReqId" />

thanks in advance.


Use a template field and add hyperlink to it.

<asp:TemplateField HeaderText="Request No.">
   <ItemTemplate>
     <asp:HyperLink ID="EditHyperLink1" runat="server" 
          NavigateUrl='<%# Page.Request.Path + "?reqid=" + Eval("ReqId") %>'
          Text='<%# Eval("ReqId") %>' >
     </asp:HyperLink>
   </ItemTemplate>
</asp:TemplateField>

Or you can use GridView_RowDatabound event handler and change the Navigateurl for the particular control.

protected void myGV_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        HyperLink myHL = (HyperLink)e.Row.FindControl("EditHyperLink1");
        myHL.NavigateUrl = Page.Request.Path + "?reqid=" + e.Row.Cells[0].Text.ToString();
    }
}

I have assumed that ReqId is present in 1st cell.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号