Click to See Complete Forum and Search --> : HTML help??
zenlakin
03-20-2007, 11:35 AM
Ok guys, I hate to ask this question but it has been a long time since I have dome any kind of programming or any HTML. What I a want to do is to create an html document that when double-clicked on takes me to a mapped share on my network. I am pretty sure this can be done in HTML right? I thought that I had done that a couple years ago but I have not done anything with HTML in a good 2 years. Thanks guys.
Kevey
03-20-2007, 12:33 PM
I do sort of the same thing using IE (can't use FF at work). I have a page with a link to my mapped shares that looks sort of like this very simplified version:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US"><head><title>Network Shares</title>
<meta name="description" content="Network shares" >
<meta name="keywords" content="network" >
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >
<link href="favico.gif" type="image/gif" rel="icon" >
<style type="text/css"></style>
</head>
<body>
<h3><a href="file:///M|/">Enterprise Drive</a></h3>
</body>
</html>
You just have to be sure that everyone that uses the link is mapped to the share using the same letter.