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.
Hi,
if you id the body tag then dim it up as a generic control you can change
the background as needed, eg
<body id="theBody" runat="server">
Protected theBody As System.Web.UI.HtmlControls.HtmlGenericControl
theBody.atttributes.add("background", getName())