i am using html to create a page. but the problem i am facing is i am not geeting the image. my code is as:
<html>
<head runat="server">
<title>Untitled Page</title>
</head>
<body style = " background:#FFA500">
<form id="form1" runat="server">
<div>
<h1>
header_picture
</h1>
<img src="C:/Documents and Settings/All Users/Documents/My Pictures/Sample Pictures/Water lilies.jpg" />
</div>
<div>
<h1>
here comes the content
</h1>
</div>
<div>
<h2>
footer_picture
</h2>
<img src="C:/Documents and Settings/All Users/Documents/My Pictures/Sample Pictures/Blue hills.jpg" />
</div>
</form>
</body>
</html>
but it is not showing me the images when i run this html file in browser..
please help me out..
is this possible to give image url on run time in <img src> tag in html file.. if yes how can we do that..
You should change
C:/Documents and Settings/All Users/Documents/My Pictures/Sample Pictures/Water lilies.jpgtofile:///C:/Documents and Settings/All Users/Documents/My Pictures/Sample Pictures/Water lilies.jpgand the same with your other URL too.