Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: unable to get values for modification

  1. #1
    Junior Member
    Join Date
    Apr 2010
    Posts
    18
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default unable to get values for modification

    hi,
    i developed jsp page..in it i need to modify the elements ..for that i used beans to store already existing values and if i call the jsp page by using EL it should take the existing values and do modifications...im getting for textboxes but im not getting for textarea..can any one suggest me how to do..here is my code...

    modify.jsp

     
    <td></td>
                            <td><font color="#800000" size=""><b>A-Success Message</b></font></td>
                            <td><textarea name="actSuccessMsg" rows="1" value="${packDetails.packDetails.packMessage.actSucessMessage}"></textarea></td>
                            <td></td>
                            <td><font color="#800000" size=""><b>D-Success Message</b></font></td>
                            <td><textarea name="deactSuccessMsg" rows="1" value="${packDetails.packDetails.packMessage.deactSucessMessage}"></textarea></td>
                            <td></td>

    thanks and i m waiting for the reply,
    its urgent


  2. #2
    Junior Member
    Join Date
    Sep 2010
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: unable to get values for modification

    It should be like this

    <textarea name="deactSuccessMsg" rows="1">${packDetails.packDetails.packMessage.deactSucessMessage}</textarea></td>
                            <td></td>

  3. #3
    Super Moderator Json's Avatar
    Join Date
    Jul 2009
    Location
    Warrington, United Kingdom
    Posts
    1,274
    My Mood
    Happy
    Thanks
    70
    Thanked 156 Times in 152 Posts

    Default Re: unable to get values for modification

    I'm not entirely sure I know what you mean here, are you saying you want to know how to read the value of the textarea once you have submitted the page?

    // Json

Similar Threads

  1. unable to get the o/p for xml file
    By javaking in forum File I/O & Other I/O Streams
    Replies: 2
    Last Post: April 11th, 2010, 11:59 PM
  2. unable to run log code
    By javaking in forum What's Wrong With My Code?
    Replies: 10
    Last Post: April 6th, 2010, 11:49 PM
  3. Unable to insert records
    By javaprogrammer11 in forum JavaServer Pages: JSP & JSTL
    Replies: 0
    Last Post: March 24th, 2010, 03:16 AM
  4. Unable to sendViaPost to url
    By mousumi in forum Java Networking
    Replies: 2
    Last Post: January 28th, 2010, 04:52 AM
  5. Unable to create a new connection!
    By fh84 in forum JDBC & Databases
    Replies: 1
    Last Post: November 20th, 2009, 05:58 PM