Mobile Control ASP.Net

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

Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
    Dim MyMobCaps as Mobile.MobileCapabilities
    MyMobCaps = Request.Browser
    Label1.Text = "Screen Width: " _
        & MyMobCaps.ScreenPixelsWidth _
        & " Screen Height: " _
        & MyMobCaps.ScreenPixelsHeight
End Sub


            runat="server" 
        id="Label1"
    />