Set Gridview DataNavigateUrlFormatString Dynamically inside User Control(ASCX)

旧街凉风 提交于 2019-12-12 13:32:31

问题


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.


回答1:


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.



来源:https://stackoverflow.com/questions/6469155/set-gridview-datanavigateurlformatstring-dynamically-inside-user-controlascx

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!