Hello,
I have a design question. I have several products for different customers the business functionality is different however the UI is very similar. I have four separate login pages that I'm in the process of attaching a product type and that product type determines the skin I use. I want to be able to use a single WEB.CONFIG like this:
I have a design question. I have several products for different customers the business functionality is different however the UI is very similar. I have four separate login pages that I'm in the process of attaching a product type and that product type determines the skin I use. I want to be able to use a single WEB.CONFIG like this:
<
appSettings
>
<!-- Sets the skin for all RadControls to Hay -->
<
add
key
=
"Telerik.Skin"
value
=
"Hay"
/>
<add key="Telerik.Skin" value="Office2007" />
<add key="Telerik.Skin" value="Outlook" />
<add key="Telerik.Skin" value="Sunset" />
</
appSettings
>
Based on the product login page I pass a product type parameter to retrieve the correct appSettings value
for the entire product site. Has anyone done this. Basically it's using Polymorphism but I'd
like to know if someone has tackle this challenge with Telerik
Thank You