How to change Background Image

B

Bobofrut

Hi

In my ASP.NET application I try to change dynamicly picture in background of
page.
Ther is any way to do it without using webcontrols(like panel)
I wrote the public function named getName() that return string "pic\1.jpg"
and put this into html tag
<body background="<%# getName()%>" bottomMargin=0 leftMargin=0 topMargin=0
rightMargin=0>
but it doesn't work.

please help

chris
 
J

Jos

Bobofrut said:
Hi

In my ASP.NET application I try to change dynamicly picture in
background of page.
Ther is any way to do it without using webcontrols(like panel)
I wrote the public function named getName() that return string
"pic\1.jpg" and put this into html tag
<body background="<%# getName()%>" bottomMargin=0 leftMargin=0
topMargin=0 rightMargin=0>
but it doesn't work.

please help

chris

<%= getName()%>

Use = , not #.

The hash sign is used for databinding syntax, which will be executed
only when the DataBind() method is called.

The <%= %> code is run when the page is rendered.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,534
Members
45,008
Latest member
Rahul737

Latest Threads

Top