Mobile ASP.Net Tutorial

<%@ Page  Inherits="System.Web.UI.MobileControls.MobilePage" Language="C#" %>
<%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>

    void Command1_Click(Object sender, EventArgs e) {
        ActiveForm = Form1;
    }
    
    void Command2_Click(Object sender, EventArgs e) {
        ActiveForm = Form2;
    }


    This is Form1
    Go To Form2
    Go To Form3


    This is Form2
    Go To Form1
    Go To Form3


    This is Form3
    Go To Form1
    Go To Form2