MobilePage

MobilePage is the most important WebControl in AMF. You can have many MobilePage in the same asp.net page. Header and Footer are optionals.

Code:

    <mob:MobilePage ID="mbPage1" runat="server">
        <Header>
            <h1>Simple Page</h1>
        </Header>
        <Content>
            <p>Welcome, in your first mobile page generated with asp.net mobile framework</p>
        </Content>
        <Footer>
            <h1>Footer</h1>
        </Footer>
    </mob:MobilePage>

Result :