Look at your path for the img tag:
<img src="file:///C:\Manu%20Kaura\ASP%20Project\Rohit_Website\App_Data\Computer-04-june.gif"
This applies to all of the image tags:
First - do you really have your images in your App_Data folder? (if so, I'd recommend moving them from there, to a dedicated images folder)
After that, then, make the path in the src attribute reflect the relative path from the page to the actual image.
For instance
Root (web pages here)
--Images (imageshere)
img src="images/Computer-04-june.gif"
Better yet, use an ASP.Net image control - then, you can choose the image file quickly and directly, with the properties window.
David Wier
MCP/ASPInsider
ASPNet101.com - where to look first!
Replace It! - the newest from August Wind - search/replace in multiple files
Control Grouper - easily control properties for multiple controls with one control!
Calendar Express - The Best HTML Calendar Generator on the web!
(Please 'Mark as Answer' when it applies)