Can anyone tell me how to link to a file on a remote file server (not the DNN install location). I have a sql table with records of file locations that I need to provide a list of links to in a gridview or detailsview. I would prefer to create the link in my SQL query something along the lines of -
Select '<a href="http://' + [FileLocation] + '">' + [FileDescription] + '</a>' as FileLink
Where the data stored in [FileLocation] would be something like ServerName\Folder\filename.ext
I can't seem to get the link to go outside the DNN site.
Is it not possible to link to another file server? Thanks for any help.