Click here to Skip to main content
15,900,907 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,

Can anyone know.

how to save the resume as a link in gridview and that link should open?
Posted

1 solution

Try code like this in a template column -
XML
<asp:templatecolumn >
  <itemtemplate>
    <asp:hyperlink navigateurl='<%#Eval("url")%>' text="view" runat="server" id="resume path"/>
  </itemtemplate>
</asp:templatecolumn>


If the file is found through the link path, the browser will automatically open the file from that location.
 
Share this answer
 
Comments
sathiyak 7-Mar-12 5:32am    
can you pls give code for retrieve that resume in database n save that resume ?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900