| |||||||||||||||
<clientTarget> SectionASP.NET Syntax ASP.NET Configuration Sections Adds aliases for specific user agents to an internal collection of user agent aliases. <clientTarget> <add ... /> <clear /> <remove ... /> </clientTarget> Attributes and ElementsThe following sections describe attributes, child elements, and parent elements. AttributesNone. Child Elements
Parent Elements
RemarksThe collection of user agent aliases indicates the target user agents that ASP.NET server controls should render content for. Default ConfigurationThe following default clientTarget element is configured in the root Web.config file in the .NET Framework version 2.0. <clientTarget> <add alias = "ie5" userAgent = "Mozilla/4.0 ( compatible; MSIE 5.5; Windows NT 4.0" /> <add alias = "ie4" userAgent = "Mozilla/4.0 ( compatible; MSIE 4.0; Windows NT 4.0" /> <add alias = "uplevel" userAgent = "Mozilla/4.0 ( compatible; MSIE 5.5; Windows NT 5.1 )" /> <add alias = "downlevel" userAgent = "Generic Downlevel" /> </clientTarget> The following default clientTarget element is configured in the Machine.config file in the .NET Framework versions 1.0 and 1.1. <clientTarget> <add alias = "ie5" userAgent = "Mozilla/4.0 ( compatible; MSIE 5.5; Windows NT 4.0 )" /> <add alias = "ie4" userAgent = "Mozilla/4.0 ( compatible; MSIE 4.0; Windows NT 4.0 )" /> <add alias = "uplevel" userAgent = "Mozilla/4.0 ( compatible; MSIE 4.0; Windows NT 4.0 )" /> <add alias = "downlevel" userAgent = "Unknown" /> </clientTarget> ExampleThe following code example demonstrates how to add four user agent aliases. <configuration>
<system.web>
<clientTarget>
<add alias = "ie5" userAgent = "Mozilla/4.0 ( compatible;MSIE 5.5;Windows NT 4.0 )" />
<add alias = "ie4" userAgent = "Mozilla/4.0 ( compatible;MSIE 4.0;Windows NT 4.0 )" />
<add alias = "uplevel" userAgent = "Mozilla/4.0 ( compatible;MSIE 4.0;Windows NT 4.0 )" />
<add alias = "downlevel" userAgent = "Unknown" />
</clientTarget>
</system.web>
</configuration>
See AlsoASP.NET Configuration ClientTargetSection Class |
| ||||||||||||||
Check out related books at Amazon
© 2000-2008 Rey Nuñez All rights reserved.
If you have any question, comment or suggestion
about this site, please send us a note
You can help support aspxtreme