Sep 2, 2009 #1 Dan1968 Technical User Joined Jan 2, 2009 Messages 3 Location US Hello, I need to pass a text field to a servlet and am wondering if there are any examples or ideas? TIA
Hello, I need to pass a text field to a servlet and am wondering if there are any examples or ideas? TIA
Sep 2, 2009 #2 BillyRayPreachersSon Programmer Joined Dec 8, 2003 Messages 17,047 Location GB Do you need to use AJAX? If not, use a regular form submission... or you do, then submitting a GET or POST request via AJAX should be the way to go. Server-side, you'd need to ask in the Java forum, but it should be no different from receiving a regular form submission, I'd have thought. Hope this helps, Dan Coedit Limited - Delivering standards compliant, accessible web solutions Dan's Page [blue]@[/blue] Code Couch: http://www.codecouch.com/dan/ Code Couch Tech Snippets & Info: http://www.codecouch.com/ Upvote 0 Downvote
Do you need to use AJAX? If not, use a regular form submission... or you do, then submitting a GET or POST request via AJAX should be the way to go. Server-side, you'd need to ask in the Java forum, but it should be no different from receiving a regular form submission, I'd have thought. Hope this helps, Dan Coedit Limited - Delivering standards compliant, accessible web solutions Dan's Page [blue]@[/blue] Code Couch: http://www.codecouch.com/dan/ Code Couch Tech Snippets & Info: http://www.codecouch.com/
Sep 3, 2009 Thread starter #3 Dan1968 Technical User Joined Jan 2, 2009 Messages 3 Location US Thanks! Upvote 0 Downvote