M
M.Imran Khan
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
<%@ 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