Oct 28, 2005 #1 CJAI MIS Oct 21, 2003 224 US I have an input form where users can upload word documents to a database. How do I create a hyperlink to the word doc in the web page? FYI - I want to pull the infointo a dataset, then populate a label with hyperlinks that when clicked pull up the word doc Thanks much!
I have an input form where users can upload word documents to a database. How do I create a hyperlink to the word doc in the web page? FYI - I want to pull the infointo a dataset, then populate a label with hyperlinks that when clicked pull up the word doc Thanks much!
Oct 28, 2005 #2 Guru7777 Programmer Dec 10, 2003 331 US Is the word document itself in the database, or is it only a pointer to the document at another location? ---------------------------------------- TWljcm8kb2Z0J3MgIzEgRmFuIQ== Upvote 0 Downvote
Is the word document itself in the database, or is it only a pointer to the document at another location? ---------------------------------------- TWljcm8kb2Z0J3MgIzEgRmFuIQ==
Oct 28, 2005 Thread starter #3 CJAI MIS Oct 21, 2003 224 US the document itself is in the database stored as type 'image' Upvote 0 Downvote
Oct 29, 2005 #4 ca8msm Programmer May 9, 2002 11,327 GB You can retreive the image via a SQL statement and then use Response.BinaryWrite to write the file out to the page. ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results. Upvote 0 Downvote
You can retreive the image via a SQL statement and then use Response.BinaryWrite to write the file out to the page. ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results.