I have created a dynamic image which is being saved in the Page_Load(object sender, EventArgs e) method.
I load image like:
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" Runat="Server">
<p>
</p>
<img alt="aa" class="style1" longdesc="aa"
src="file:///C:/project/Image/hours.png" />
</asp:Content>
But only thing which is being displayed is:

I knew it’s kind of stupid question but I can’t make it work.. Can any one point me where I am doing mistake?
You cannot interact with the file system on the client.
You need to reference an image on the server using a relative or absolute path.