Mobile ASP.Net Tutorial

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

    public void Page_Load(Object sender, EventArgs e)
    {
      if (!IsPostBack)
      {
        for (int count=1; count < 100; count++)
        {
          MobileListItem listItem = new MobileListItem(count.ToString());
          List1.Items.Add(listItem);
        }
      }
    }