S
Shawn Berg
A web site I am working on is built completely in classic ASP, and allows
the user to choose different "skins" for the site. The term "skin" being
used very generically. When a user selects a Skin it controls what
stylesheet is sent to their web browser, and also changes some images that
display.
For example, in a classic ASP page we may have the following:
## BEGIN CODE ##
<img src="/images/<%= UserSkin %>_logo.jpg">
## END CODE ##
What would be the best way to convert these pages to ASP.NET, and use an OOP
approach?
Any help would be appreciated.
Thanks.
the user to choose different "skins" for the site. The term "skin" being
used very generically. When a user selects a Skin it controls what
stylesheet is sent to their web browser, and also changes some images that
display.
For example, in a classic ASP page we may have the following:
## BEGIN CODE ##
<img src="/images/<%= UserSkin %>_logo.jpg">
## END CODE ##
What would be the best way to convert these pages to ASP.NET, and use an OOP
approach?
Any help would be appreciated.
Thanks.