I have a situation where I have ~10-20 different background images in a folder. When my site loads I need to choose a specific one of these images based upon some values from the database.
I thought about using runat=server on the body tag, and then adding the attributes dynamically on page_load, but everywhere I have read that suggestion people say it is a really bad idea... Also, I tried it, and it didn't work (however didn't debug it too much).
How would one do this "the right way" ? :-)
You Can Either dynamically add it via a Generic HTML control:
The other option is to have a publically exposed property from the code-behind
E.g.
Update this in page init or onload events.
And reference it in the aspx file either in the head:
or as an attribute of the body tag
Either of these should be able to help you out.