I tried out to redirect my page, if it is visited by a tablet.
This could does not work (also tried it with property is_tablet):
<redirect firstRequestOnly="true"
mobileHomePageUrl="~/Mobile/index.html"
timeout="20" mobilePagesRegex="~/Mobile/|~/Widgets/|~/Produkte/GN/|~/facebook/">
<locations>
<!-- Don't redirect requests that have the noredirect query string parameter. -->
<!--Send tablets to their own home page.-->
<location name="Tablet" url="~/Default.aspx">
<add property="IsTablet" matchExpression="true"/>
</location>
</locations>
</redirect>
<log logFile="~/App_Data/Log.txt"
logLevel="Info" />
<detection>
<xmlFiles>
<add name="xml" filePath="~/App_Data/51Degrees.mobi-Lite-2012.04.04.xml" enabled="true" />
</xmlFiles>
</detection>
Any idea?