Link to home
Start Free TrialLog in
Avatar of Corey_819
Corey_819

asked on

Form text box variable not holding value of what user typed in

Hello and how is it? I am trying to hold my user's input values in my JSP page. This is my code:

String myName = null, msg ;
    myName = request.getParameter ("TXTName") ;
    if (myName == null){
        myName = (String) application.getAttribute("TXTName") ;
    }
    if (myName == null){
       
    }else {
        application.setAttribute("TXTName", myName) ;
    }

In the index.jsp page.

Then also inside the index.jsp page I have this

<td><font>Name:</font></td>
                 <td><input type="Text" name="TXTName" value="<%=request.getParameter("TXTName")%>"></td>

Then if a user clicks on my tree view control the page reloads. However, the TXTName value goes back to Null everytime. What am I missing?

Thanks C
Avatar of runa_paathak
runa_paathak

Try changing this:

<input type="Text" name="TXTName" value="<%=request.getParameter("TXTName")%>">

to

<input type="Text" name="TXTName" value="<%=myName%>">
Avatar of Corey_819

ASKER

Thanks for the suggestion, but for some reason it keeps going to back null when I click on my tree view link. So basically when the page reloads he TXTName is not retaining its value it just goes back to the myName Null. Thoughts??

The change that I suggested didn't work?

Is it actually displaying the string "null" in the text box or do you mean the text box is empty?
I think this is the reason:

The first time your page loads request.getParameter("TXTName") returns null. So, in your code below

 if (myName == null){
        myName = (String) application.getAttribute("TXTName") ;
 }
 
if (myName == null){
   
 }else {
       application.setAttribute("TXTName", myName) ;
 }

the first if block will be executed. Here, you are trying to get the value from the application object. But the first time around, even this will return null!

Then the else part of the next if is executed i.e., null is put on the application object. In effect, your myName will always be null.
I am sorry I am still really new to JSP. So shoudl I only do a getParameter is it is not null or how shoudl my code here look. And by the way the application object shoudl be the session. Sorry a typo. :)
I actually figured a way to do this with Java Script, but for some reason when the page reloads the check boxes I checked are disapearing. Any ideas why that is happening?

ASKER CERTIFIED SOLUTION
Avatar of runa_paathak
runa_paathak

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks runa_paathak, but still when I click on another parent node to expand the tree the checked checkbox goes un checked again. :)
Okay I have the Form's text boxes holding theri values. However, one more question. How can I get the form values to be blank and not null when the page loades up?

Forget last post. I figured out my issue. :)
However, I am still not getting the check boxes checked;
I am sorry real quick question how would I hold a drop down box value?
I apologize again nevermide on the drop downs I have those working. Still wrestling with the check boxes?
Thanks man you gave me ideas and your CHECKED solution helped me out. :)