Hello Community
 
I am learning asp.net using Visual web developer 2008 express.
 
I have an image control with the html code below
<div class="Header">
     <asp:Image ID="image1" runat="server"
       ImageUrl="D:/Master/test.jpg" Width="500" Height="300"
       AlternateText="UNRA Fort Portal Intranet"/>
        
     </div>
In desgn view, the image shows but when i run the app, the image is not shown.
Only the altanate text is displayed.
 The css code code as  below. 
.Header
{
     top:10px;
     left:20px;
     position:absolute;
     width:800px;
     background-image:URL(D:/Master/test.jpg);
     background-repeat:repeat-x;
}
Any explnation for the anomaly?
 
Ronald