ASP :: Wireless (WML) Page
2001
Serving a WML (wireless) page with ASP.
<%@ LANGUAGE="VBSCRIPT" %>
<% Option Explicit %>
<% Response.Buffer = true %>
<% Response.ContentType = "text/vnd.wap.wml"%>
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<template>
<do label="Home" type="prev">
<go href="/"/>
</do>
<do label=" Stock" type="go">
<go href="/stock/"/>
</do>
<do label=" Contact" type="go">
<go href="/contact/"/>
</do>
<do label=" Feedback" type="go">
<go href="/feedback/"/>
</do>
</template>
<card id="main" title="Wireless">
<p align="center">
<small>
<table columns="2">
<tr>
<td><small><img src="/images/logo.wbmp" alt="LOGO" width="23" height="22" align="middle" /></small></td>
<td>
<small>- <a href="/stock/">Stock Quote</a></small>
<br /><br />
<small>- <a href="/contact/">Contact Info</a></small>
<br /><br />
<small>- <a href="/feedback/">Site Feedback</a></small>
</td>
</tr>
</table>
</small>
</p>
</card>
</wml>