Im not sure about using a label for this, there is a literal control or a hyperlink control which would be better suited.
However, in either case c:/ refers to your local disk, the user of a website does not have access to that directory.
You would need to store the page in a directory within the website and use the site address to locate link to hte file.
dim strlink as string = "http://www.yoursite.com/some file.doc"
or
dim strlink as string = "http://localhost/some file.doc"
' Some file is the name of the file
literal1.text = "<a href = " & strlink & ">Click here</a>"
'where literal1 is a literal control
======================================
They say, best men are molded out of faults,
And, for the most, become much more the better
For being a little bad.
======================================
|