browser specific themes and web.config

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to specify browser specific themes in the web.config like you
can in the page declaration of a content page?

If you can't there and you can't in the master page, then you have to
declare them for every content page, and that does not seem very efficient.

If there is no way better way to do that, is there some way to leverage the
detection code microsoft has already written in my own http module to sort
things out?
 
You can have browser specific property assignments:

<asp:Label ie:Text="This is IE" ff:Text="This is FireFox">

I'd poke around MSDN for the exact docs on this... It's related to the adapter
plumbing.

-Brock
DevelopMentor
http://staff.develop.com/ballen
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top