<asp:HyperLin k ID="hlkFilename " runat="server" NavigateUrl='<% #PopulatePath(E val("FullName") .ToString(),Eva l("Name").ToStr ing()) %>' target="_blank" ><%#Eval("Name" )%></asp:HyperLink>
I am displaying a file name using this. i need to get the file name in codebehind (vb.net) to delete the particular file in gridview. I am not getting the values in grid view from database.they r from some folders. Can some one help me out in getting the file name in codebehind.
I am trying like this but its not working
Dim lnkName As HyperLink
lnkName=ctype(g vAppSearch.rows[e.RowIndex].cells[1].FindControl("h lkFilename"),Hy perLink)
I am displaying a file name using this. i need to get the file name in codebehind (vb.net) to delete the particular file in gridview. I am not getting the values in grid view from database.they r from some folders. Can some one help me out in getting the file name in codebehind.
I am trying like this but its not working
Dim lnkName As HyperLink
lnkName=ctype(g vAppSearch.rows[e.RowIndex].cells[1].FindControl("h lkFilename"),Hy perLink)
Comment