How to: Create a Mobile Version of a Content Page
Updated: October 17, 2013
Applies To: Windows Server 2012 Essentials, Windows Home Server 2011, Windows Storage Server 2008 R2 Essentials, Windows Small Business Server 2011 Essentials
You can create content pages that are specifically intended for viewing on a mobile device.
To define a mobile page
Open the .aspx.cs file for the page.
Add the IsMobile property to the ContentPage class and define the value as
trueto specify the page as a mobile page.public override bool IsMobile { get { return true; } }Save the .aspx.cs file.
Add a new mobile element to the webaddin.xml file.
<Mobile> <DefaultSrc>Default.aspx</DefaultSrc> <BrowserTitle>Sample Addin</BrowserTitle> <NavigationText>Sample</NavigationText> <HeaderText>Sample Mobile</HeaderText> </Mobile
Publish the application.
Community Additions
ADD
Show: