[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Alexander Inochkin

10/16/2002 7:45:00 AM

Hi!

Is sombody can help me?
How can I write <timer> tag and ontimer property in wml?

Now I have wml page:
<wml>
<card title="Page" ontimer="menu.asp">
<timer value="40"/>
<p>
<img src="logo.wbmp" alt="picture" align="middle"/>
</p>
</card>
</wml>

What shall I do to get output in Mobile Forms like this?

Inochkin Alexander



1 Answer

(Patrick C. Cole (MS))

10/18/2002 4:34:00 PM

0

Alexander,

Here is a sample that should demonstrate how to use a WML Timer using three
cards just for demonstration purposes:

<mobile:Form id="Form1" runat="server">
<mobile:DeviceSpecific id="DeviceSpecific1" Runat="server">
<Choice Filter="isWML11">
<ScriptTemplate>
<onevent type="onenterforward">
<go href="#first" />
</onevent>
</card>
<card id="first" title="first" ontimer="#second">
<timer value="15"/>
<p align="center">
<big>First Card</big>
</p>
</card>
<card id="second" title="second" ontimer="#third">
<timer value="15"/>
<p align="center">
<big>Second Card</big>
</p>
</card>
<card id="third" title="third">
<p align="center">
<big>Third Card</big>
</p>
</ScriptTemplate>
</Choice>
</mobile:DeviceSpecific>
</mobile:Form>

Hope this helps,

Patrick Cole
Microsoft Developer Support

This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use. © 2002 Microsoft Corporation. All rights
reserved.
--------------------
| From: "Alexander Inochkin" <alex@ideal.ru>
| Subject: Timer tag in WML
| Date: Wed, 16 Oct 2002 10:45:55 +0400
| Lines: 21
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2600.0000
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000
| Message-ID: <#bngO9NdCHA.2556@tkmsftngp09>
| Newsgroups: microsoft.public.dotnet.framework.aspnet.mobile
| NNTP-Posting-Host: 212.69.101.2
| Path: cpmsftngxa06!tkmsftngp01!tkmsftngp09
| Xref: cpmsftngxa06 microsoft.public.dotnet.framework.aspnet.mobile:4720
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.mobile
|
| Hi!
|
| Is sombody can help me?
| How can I write <timer> tag and ontimer property in wml?
|
| Now I have wml page:
| <wml>
| <card title="Page" ontimer="menu.asp">
| <timer value="40"/>
| <p>
| <img src="logo.wbmp" alt="picture" align="middle"/>
| </p>
| </card>
| </wml>
|
| What shall I do to get output in Mobile Forms like this?
|
| Inochkin Alexander
|
|
|
|