* У меня есть GridView в Dynami c .. Я хочу изменить значение Dynami c на гиперссылку .. Вот мой код *
foreach (GridViewRow gr in Gridview1.Rows) { HyperLink hp = new HyperLink(); hp.Text = gr.Cells[25].Text; hp.NavigateUrl = "https://chennaiuat.paynearby.in:2025/UploadFiles/SDFiles/DepositSlip/" + hp.Text; hp.Text = "<a href='" + hp.NavigateUrl+"'> </a>"; gr.Cells[25].Text = hp.Text; }
Измените свой код следующим образом:
hp.Text = Context.Server.HtmlDecode("<a href='" + hp.NavigateUrl+"'> </a>");