Ever wanted to access network files from your webpage? Here is how to create the link: <a target=”_blank” href=”file:///D:/MyCompanyShare/MyDoc.docx”>View</a>
Home » Posts tagged "HTML"
Archive for the 'HTML' Tag
Drop-down onChange event
Chose file type: <select onChange=”window.location=this.options[this.selectedIndex].value;”> <option selected>Please select</option> <option value=”Music.aspx”>Music Files</option> <option value=”Movie.aspx”>Movies</option> <option value=”OfficeDoc.aspx#word”>Word Files</option> </select> EXAMPLE: Chose file type: Please select…Music FilesMoviesWord Files