Click here to Skip to main content
15,891,976 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Sir

I have designed a page in asp .net as mentioned below. In the design time i am able to display image but in the run time it is not coming. Kindly help me plz.

form id="form1" runat="server">



sas


/form>

#maintbl
{

width:1025px;
height:100px;
background-image:url('/Images/BannerBG2.jpg');
}
I have also tried with
background-image:url('/Images/BannerBG2.jpg');
background-image:url('~/Images/BannerBG2.jpg');
Posted
Comments
StianSandberg 18-Jul-12 6:49am    
Please clean up your questions code in order to get help.

1 solution

Specify the Project folder Name that contains Images folder eg:-
CSS
background-image: url('/Project_Name/Images/BannerBG2.jpg');


Or
CSS
background-image: url('Images/BannerBG2.jpg');


Good luck.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900