how to display backgroung image in asp.net..
asp.net
Collapse
X
-
You use CSS.
Set the background style for the <body> element.
For example (using a CSS class):
For example (using inline style):Code:body{ background: orange url('www.mydomain/backgroundImage.jpg') repeat-x left top; }
Look up CSS Background for a better understanding.Code:<body style="background: orange url('www.mydomain/backgroundImage.jpg') repeat-x left top;")>
-Frinny
Comment