EXPERIMENT 5
WAP in WML to create action button
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN"
"http://www.wapforum.org/DTD/wml13.dtd">
<wml>
<template>
<do type = "options" label = "Home">
<go href = "#c1"></go>
</do>
</template>
<card id = "c1" title = "Home">
<p>
Home sweet home
<br/><a href = "#c2">Go to Page 2</a>
<br/><a href = "#c3">Go to Page 3</a>
<do type = "options" label = "">
<noop/>
</do>
</p>
</card>
<card id = "c2" title = "Second">
<p>
Second Page
<br/><a href = "#c1">Go to Page 1</a>
<br/><a href = "#c3">Go to Page 3</a>
</p>
</card>
<card id = "c3" title = "Third">
<p>
Third Page
<br/><a href = "#c1">Go to Page 1</a>
<br/><a href = "#c2">Go to Page 2</a>
</p>
</card>
</wml>
No comments:
Post a Comment