iam trying to display an image from the local system on the browser using image tag, in my
jsp file. But the image is not displayed. i am using netbeans6.0
IDE and
tomcat 6.0.14 for development.
below is the code . it is a simple html code. iam unable to trace the error.
anuone please help me out of this.
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script>
function getimgsize()
{
var path=document.getElementById('f1').value;
alert(path);
document.write("<img src='"+path+"'>")
}
</script>
</head>
<body>
<img src="D://jagdish//images//five.jpg" alt="image cannot be displayed"/>
<form method="post" action="" onsubmit="getimgsize()">
<input type="file" name="file1" id="f1">
<input type="submit">
</form>
</body>
</html>
Thanks in advance,
jagdish