[lnkForumImage]
TotalShareware - Download Free Software

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


 

Robin Prosch via .NET 247

3/22/2005 8:58:00 PM

(Type your message here)

--------------------------------
From: Luke Fitzgerald

Hi lads,
Im developing a wap site for a project and im stuck badly and its due in in 10 days!!
I am using WML and ASP. What id like to do is have a drop down menu with a list of counties. the user selects one and is taken to another page where a list of towns in that county are listed. Using an emulator on line it works but when i check it on my mobile the submit button wont appear. Its a microsoft dataabase called fyp with CountyTable and TownTable in it. Here is my code. Any help will be greatly appreciated.
Thanks,
Luke

<%Response.ContentType="text/vnd.wap.wml"%>
<%Response.write("<?xml version=""1.0""?><!DOCTYPE wml PUBLIC ""-//WAPFORUM//DTD WML 1.1//EN"" ""http://www.wapforum.org/DTD/wml_1.1.xml""...)%>

<wml>
<card>
<p>
<%
dim adoCon, rsRecordset, STRsql,TEMP

Set adoCon = Server.CreateObject("ADODB.Connection")
Set rsRecordSet = Server.CreateObject("ADODB.Recordset")
adoCon.mode = adModeReadWrite
adoCon.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("FYP.mdb")

STRsql = "Select * from CountyTable"
rsRecordSet.Open Strsql ,adoCon, 3, 3
%>

<select name="mid" title="County">

<%while not rsRecordSet.EOF%>

<option value="<%=rsRecordSet("CountyID")%>"><%=rsRecordSet("CountyName")%></option>

<%
rsRecordSet.MoveNext
wend
rsRecordSet.Close
set rsrecordset = nothing
adocon.close
set adocon = nothing
%>

</select>
</p>

<do type="accept" label="Select County">
<go href="town.asp" method="get" >
<postfield name="mid" value="$(mid)" />
</go>
</do>

</card>
</wml>

-----------------------
Posted by a user from .NET 247 (http://www.dotn...)

<Id>+d9fi1IeM0+PdaSehkXYLw==</Id>
1 Answer

Chance Hopkins

3/23/2005 7:17:00 AM

0

This is just a wild guess, but figured I''d try to help.

Is it the space in the label attribute value?

Perhaps the device you tried can''t handle it for some reason. Try it without
the space and see if it works.

<do type="accept" label="Select County">