Click here to Skip to main content
15,903,012 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi
in UserControl This Code Use:
XML
<div style="width:200px;height:200px; background-color:Yellow; background-image:url(../Images/grafic.gif)" >
</div>



when Use this UserControl In Pages Image in UserControl Not Disaly!???
directory of usercontrol and Page is diffrent
Posted

1 solution

Use this

HTML
<div style="width:200px;height:200px; background-color:Yellow; background-image:url(~/Images/grafic.gif)">
</div>


'~' refers to the root of website folder.
 
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