stvchez123
Programmer
I am building HTML pages to be used on a wireless device. Is there any to pass URL variables from page to page? I'm used to working with server side languages, which would be an easy task, but not sure is feasible thru this framework.
also, one more question.
I'm building a page for a wireless device and it incorporates a form. I'm getting an error and wonder if I missed anything.
// error on emulator
Error 405: Method not allowed
// form code snippet
<form action="wirelessCenter.html">
Enter your phone number:
<br/>
<input type="text" name="number"/>
<br/><br/>
<input type="submit" value="Continue"/>
<br/><br/>
</form>
Then this should go straight to the next page (wirelessCenter.html)
also, one more question.
I'm building a page for a wireless device and it incorporates a form. I'm getting an error and wonder if I missed anything.
// error on emulator
Error 405: Method not allowed
// form code snippet
<form action="wirelessCenter.html">
Enter your phone number:
<br/>
<input type="text" name="number"/>
<br/><br/>
<input type="submit" value="Continue"/>
<br/><br/>
</form>
Then this should go straight to the next page (wirelessCenter.html)