How would I go about populating a database value to my html body background ?
Simply put, the HTML code is something like:
<body background="<%=session("userLogo")%>">
Update
Clarification of my question: Where in the code-behind, should I make the database call to populate the session(“userLogo”) value ?
Use this in your aspx:
You can also put this in a css file (but then it has be an embedded resource and do remember to do
performSubstitution = true)