vote up 0 vote down star

I simply want to set an image as a background of asp.net page? I can display image in simple format on web page, but can't apply it as background.

flag

3 Answers

vote up 3 vote down

Use CSS. Add to the theme if you're using one, or a CSS file...

body {
  background-image: url(images/image.png);
}

Best practices recommend having this in a separate file, rather than the head of the document - and most certainly not inline.

link|flag
vote up 1 vote down

set the background image style for the body element:

<body style="background-image:url(bgr.jpg);">
...
</body>
link|flag
vote up 0 vote down

This is a basic HTML thing, you need to do some CSS for example such as:

<style type="text/css">
body {
  background-image: url(background.jpg);
}
</style>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.