calling up a directory using response.redirect
I am converting an asp page to asp.net.
I need to be able to display all the files and folders in a directory.
I was using the html <a href="\\server\directory\directory"> within
my asp page.
in asp.net I was trying to do the same thing with
response.redirect ("\\server\directory\directory") but it doesn't work. Is there another approach I could use?
|