|
Hey everyone,
Sorry, I still haven't got a solution to my problem. Basically in WML, I want have a page as follows (this idea is based on a
working HTML/JSP page)
The main index page features the following (in pseudo jsp/html!):
From:
<% if (request.getParameter("from") == null)
{ %> [input text box] <Search>
<A-E> <F-M> <N-S> <T-Z>
<% }
else
out.println(from); %>
To:
<% if (request.getParameter("to") == null)
{ %>
[input text box] <Search>
<A-E> <F-M> <N-S> <T-Z>
<% }
else
out.println(to); %>
<Do Main Search>
The problem I am trying to solve, is how to pass those from variables from
the text boxes, in an html solution this index.jsp page would be reloaded from
the search page with index.jsp?from=name1&to=name2 etc.. However, I do not
know how to do this in WML. I understand I can use session.setParameter to do
the same thing, but how do I receive the value of the text and put that into the
session variable etc?
Thanks very much..
Pete Dolukhanov
|
- Re: JSP & WML Again.. Peter Dolukhanov
- Re: JSP & WML Again.. Robert Burdick
