Here is the simples Mobile page i created <%@ Page Language="vb" AutoEventWireup="false" Codebehind="MobileWebForm1.aspx.vb" Inherits="Mobile_PSD.MobileWebForm1" %> <%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %> <HEAD> <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR"> <meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE"> <meta content="http://schemas.microsoft.com/Mobile/Page" name="vs_targetSchema"> </HEAD> <body Xmlns:mobile="http://schemas.microsoft.com/Mobile/WebForm"> <mobile:form id="Form1" runat="server"> <mobile:TextBox id="txtName" runat="server"></mobile:TextBox> </mobile:form> </body> What i want is that, i want this page to refresh Automatically after x number of seconds like we have in normal HTML pages. for example, <meta http-equiv="refresh" content="30"> Can anyone tell how can i use the above in mobile page? Thanks
"M.Imran Khan" wrote: > Here is the simples Mobile page i created > > <%@ Page Language="vb" AutoEventWireup="false" > Codebehind="MobileWebForm1.aspx.vb" Inherits="Mobile_PSD.MobileWebForm1" %> > <%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" > Assembly="System.Web.Mobile" %> > <HEAD> > <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR"> > <meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE"> > <meta content="http://schemas.microsoft.com/Mobile/Page" > name="vs_targetSchema"> > </HEAD> > <body Xmlns:mobile="http://schemas.microsoft.com/Mobile/WebForm"> > <mobile:form id="Form1" runat="server"> > <mobile:TextBox id="txtName" runat="server"></mobile:TextBox> > </mobile:form> > </body> > > What i want is that, i want this page to refresh Automatically after x > number of seconds like we have in normal HTML pages. for example, > > <meta http-equiv="refresh" content="30"> > > Can anyone tell how can i use the above in mobile page? > > Thanks > > > > > >
I have the same problem. Also, div tag is not working if we want to use it in the MobileForm. I want that solution also. If you have then please let me know. Thanks. "Joyal Jhaveri" wrote: > > > "M.Imran Khan" wrote: > > > Here is the simples Mobile page i created > > > > <%@ Page Language="vb" AutoEventWireup="false" > > Codebehind="MobileWebForm1.aspx.vb" Inherits="Mobile_PSD.MobileWebForm1" %> > > <%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" > > Assembly="System.Web.Mobile" %> > > <HEAD> > > <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR"> > > <meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE"> > > <meta content="http://schemas.microsoft.com/Mobile/Page" > > name="vs_targetSchema"> > > </HEAD> > > <body Xmlns:mobile="http://schemas.microsoft.com/Mobile/WebForm"> > > <mobile:form id="Form1" runat="server"> > > <mobile:TextBox id="txtName" runat="server"></mobile:TextBox> > > </mobile:form> > > </body> > > > > What i want is that, i want this page to refresh Automatically after x > > number of seconds like we have in normal HTML pages. for example, > > > > <meta http-equiv="refresh" content="30"> > > > > Can anyone tell how can i use the above in mobile page? > > > > Thanks > > > > > > > > > > > >