Is there a way to Response.Redirect to a document (mydoc.doc)? I can create a link to the doc and it opens just fine. But when I try to redirect to it all I get is binary garbage.
When I comment out the .Redirect the .Write is creating the link correctly, But when it redirects I get garbage.
Any thoughts, suggestions and/or comments will be appreciated![[ponder] [ponder] [ponder]](/data/assets/smilies/ponder.gif)
Thanks...
Code:
aValues(2) = "Mydoc_in_a_special_directory.ppt"
...
page = "[URL unfurl="true"]http://www.myweb.com/admin/docs/"[/URL] & aValues(2)
Response.Write( "<br><B> DEBUG: </B> " & page)
Response.Redirect(page)
When I comment out the .Redirect the .Write is creating the link correctly, But when it redirects I get garbage.
Any thoughts, suggestions and/or comments will be appreciated
![[ponder] [ponder] [ponder]](/data/assets/smilies/ponder.gif)
Thanks...