jQuery in Action, 2nd edition
The moose likes JSP and the fly likes javascript to jsp? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "javascript to jsp?" Watch "javascript to jsp?" New topic
Author

javascript to jsp?

Myel Gregory
Greenhorn

Joined: Jul 07, 2011
Posts: 2
i you help me guys converting javascript to jsp/servlet in net beans
the code is like this

var user = document.getElementById("username").value;

var pw1 = document.getElementById("password").value;
var pw2 = document.getElementById("password2").value;

if (user == '' || pw1 == '') {
document.getElementById("username").value = 'Please enter a username.';
document.getElementById("test").style.visibility = 'hidden';
document.getElementById("username").style.visibility = 'visible';
document.getElementById("test2").value = 'Please enter a password.';
document.getElementById("test2").style.visibility = 'visible';
return false;
}

please help me.
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56151
    
  13

I have no idea what you are asking.

But, if you are asking if you can convert that JavaScript code to JSP code, then no, you cannot. The JavaScript code runs after the user has filled in values into the form. Any JSP code runs before the page is even sent to the browser, so there is no way that JSP code can access form values from a form that the user hasn't even seen yet.

Please read this article to understand how JSP works.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: javascript to jsp?
 
Similar Threads
tool tip problem?
facing problem while submitting
Accessing invisible checkbox parameter
what is the equivalent code on jsp?
javascript validation