Home Answers Viewqa JSP-Servlet How to get a values

 
 


harini
How to get a values
1 Answer(s)      3 years ago
Posted in : JSP-Servlet

Dear sir,
I have a one form with a multipart/form-data as follows
<form action="../jsp/newMESWithUpload.jsp" method="post" name="upform" enctype="multipart/form-data">
<table align="center" width="100%">
<tr>
<td>To</td>
<td><input type="text" name="to"></td>
</tr>
<tr>
<td>From</td>
<td><input type="text" name="from"></input></td>
</tr>
<tr>
<td>Subject</td>
<td><input type="text" name="subject"></input></td>
</tr>
<tr>
<td>Attach</td>
<td><input type="file" size="48" name="file" accept="text/html"></input></td>
</tr>

<tr>
<td>CC</td>
<td><input type="text" size="53" name="cc"></input></td>
</tr>
<tr>
<td>Bcc</td>
<td><input type="text" name="bcc"></input></td>
</tr>

<tr>
<td>Message</td>
<td><textarea rows="5" cols="40" name="matter">
</textarea></td>
</tr>
<center><tr>
<td><input type="submit" value="Send"></input></td>
</tr></center>
</table>
</form>

When i submit a form ,inother jsp i.e newMESWithUpload.jsp
in that jsp if i do
strSubject=request.getParameter("subject");
strFrom=request.getParameter("from");
strMatter=request.getParameter("matter");
Iam getting a null value aprt from a attachmented file,so how to get a other values ,please help me sir...

Thanks and Regards
Harini Veerapur.
View Answers

June 9, 2010 at 5:59 PM


Hi Friend,

Try the following code:

<%@ page language="java" %>
<html>
<SCRIPT LANGUAGE="JavaScript">
function submitForm(f){
var form = document.createElement("form");
with(form) {
method = "post";
action = "get.jsp";
name = "form";
id = "form";
style.display = "none";
}
for(var ix = 0; ix<f.length;ix++)
addForm(document.getElementById(f[ix]), form);
document.body.appendChild(form);
form.submit();
}

function addForm(frmCollectFrom, frmCollector) {
var frm = frmCollectFrom.elements;
for(var ix = 0 ; ix < frm.length ; ix++)
frmCollector.appendChild(frm[ix]);
return frmCollector;
}

</SCRIPT>
<form METHOD=POST ACTION="get.jsp" NAME="form1" id="form1">
<table>
<tr>
<td>To</td>
<td><input type="text" name="to" ></td>
</tr>
<tr>
<td>From</td>
<td><input type="text" name="from"></input></td>
</tr>
<tr>
<td>Subject</td>
<td><input type="text" name="subject"></input></td>
</tr>
<tr>
<td>CC</td>
<td><input type="text" size="53" name="cc"></input></td>
</tr>
<tr>
<td>Bcc</td>
<td><input type="text" name="bcc"></input></td>
</tr>

<tr>
<td>Message</td>
<td><textarea rows="5" cols="40" name="matter">
</textarea></td>
</tr>
</form>
<FORM NAME="form2" id="form2" ENCTYPE="multipart/form-data" ACTION="get.jsp" METHOD=POST>
<table>

<td>Attach</td>
<td><input type="file" size="48" name="file" accept="text/html"></input></td>
</tr>
</table>
</FORM>
<INPUT TYPE="button" value="Submit" onClick="submitForm(Array('form1','form2'))">
</HTML>

Thanks









Related Pages:
How to get a values - JSP-Servlet
How to get a values  Dear sir, I have one input text field and one submit button .Within one file how to get a values within a same jsp. Thanks and Regards Harini Veerapur.  Hi Friend, Try the following
How to get a values - JSP-Servlet
getting a null value aprt from a attachmented file,so how to get a other values...How to get a values  Dear sir, I have a one form with a multipart/form-data as follows To From Subject
How to get the request scope values? - Struts
How to get the request scope values?  Get value in Struts
get values from Excel to database
get values from Excel to database   hi i want to insert values from Excel file into database.Whatever field and contents are there in excel file... express 2005. how can i do with java code
How to get the correct value by calculating double values....
How to get the correct value by calculating double values....  Hello Sir, I have a method in which i am getting getting wrong... and values like 59,142 etc here i am getting wrong output for the same
how to get a values from processRecord - JSP-Servlet
how to get a values from processRecord  dear sir, i have a problem in getting a values from java to jsp.Here jsp is used to read a excel sheet that intern call a java program so i want a column values i.e a column contains
How to get the correct value by calculating double values....
How to get the correct value by calculating double values....  Hello Sir, I have a method in which i am getting getting wrong... is integer type and values like 59,142 etc here i am getting wrong output for the same
Get values from session to array
Get values from session to array  Hello I have stored my 2 dimensional array into session using C#.net. Now on aspx page i want to store same session variable into 2 dimensional array. And how to find count of session valaiable
Get values from session to array
Get values from session to array  Hello I have stored my 2 dimensional array into session using C#.net. Now on aspx page i want to store same session variable into 2 dimensional array. And how to find count of session valaiable
how to get the values to dropdownlist from oracle database
how to get the values to dropdownlist from oracle database   </script> </head> <body> <select name='countryname' onchange="showState(this.value)"> <option value
how to get the values from dynamically generated textbox in java?
how to get the values from dynamically generated textbox in java?  I... to get and update this textbox values into both the tables(Xray,CTScan... textbox corresponding to the data. I want to get data from textboxes(generated
how to get a values from a multipart/form-data - JSP-Servlet
how to get a values from a multipart/form-data  Dear sir , I used your code for getting a values,i used the fllowing function... ,matter,file field values but not status and from field i am getting null
How to get the values from the Combo Box - JSP-Servlet
How to get the values from the Combo Box   Sir, Actually i am getting the values in the combo box from table.I want what ever... in their respective text box. e.g suppose i select ram values from the combo box and its
solution to get values for xml namespace tags from sqldatabase in java
=" "/> now i need to get values from sql database for values in the blank field(" "). how do i get these values.. already connected database and created xml...solution to get values for xml namespace tags from sqldatabase in java 
Want solution to get values for xml namespace tags from database in java
:loc=" "/> now i need to get values from sql database for values in the blank field(" "). how do i get these values.. already connected database and created...Want solution to get values for xml namespace tags from database in java 
Get All Keys and Values of the Properties files in Java
Get All Keys and Values of the Properties files in Java... to get all keys and values of the properties files in the Java. This section...: Here, you will get all keys and values of the properties files with the help
Get All Keys and Values of the Properties files in Java
how to get all keys and it's values of the properties files in Java. Java... Get All Keys and Values of the Properties files in Java... to be inserting in the properties files. Here, you will get the all keys and values
Java Swing Set And Get Values
Java Swing Set And Get Values In this tutorial we will learn about how to set and get values using setter and getter methods. This example explains you how... a simple example which will demonstrate you about how to use setter and getter
Passing Multi select list box values using ajax to get values to dependent list box
Passing Multi select list box values using ajax to get values to dependent list... with multiple selection. How can i pass multiple selected values through ajax to retrieve the dependent values to the immediate next list box. Please help me
how to get values for same column name from two different tables in SQL
how to get values for same column name from two different tables in SQL  how to get values for same column name from two different tables in SQL???? column name is emp_id loacated in these two tables company,employee
how to get a column values from a excel file after attaching it - JSP-Servlet
how to get a column values from a excel file after attaching it  hi sir, How to get a column values from a excel file after attaching it while... and get a values from that store that value in To input box.Please help me sir
Getting Cell Values in a JTable
;  In this tutorial, you will learn how to get the cell.... If you want to set the cell values, use the setValueAt() method and want to get... to get the cell values in a JTable. This program creates a JTable that contains some
retrive values - JSP-Servlet
retrive values  how to get multiple values from html to jsp
get date picker values to a textbox
get date picker values to a textbox  I am using DatePicker to select date in a form in asp.net using c#. I need the picked data to get in to a textbox. Please help me soon
Get values in drop down list
Get values in drop down list  Pls provide me jsp code to get values in drop down list from another table's field. my project has customer registration and company registration pages..... when i insert data in company
Java plateform dependent values
Java plateform dependent values  How will you get the platform dependent values like line separator, path separator, etc., ?  we will get the the platform dependent values like line separator, path separator
how to get multiple hyperlink values from a table column to another jsp file?
how to get multiple hyperlink values from a table column to another jsp file... file named "dbtable" will get the parameter from "index" and search... note that "dbtable" and "table2" have relation in itemid. please show me how can
Retain jsp values
Retain jsp values  how to retain a jsp values without using session...() and request.setAttribute() methods to get the jsp fields values. For more information, visit the following links: http://www.roseindia.net/jsp/jsp-get
Need solution to get values for XML namespace tags from SQL database in Java
comp:loc=" "/> now i need to get values from sql database for values in the blank field(" "). how do i get these values.. already connected database...Need solution to get values for XML namespace tags from SQL database
how to retreive values from MS Access Database based on the values entered in textbox values in jsp file
how to retreive values from MS Access Database based on the values entered in textbox values in jsp file  Hi am new to java. i need to create...="+id; xmlHttp.onreadystatechange=stateChanged xmlHttp.open("GET",url,true
form values in java script - Struts
form values in java script  how to get form values in java script functions with struts1.1
How to create file from input values in Jframe ?
How to create file from input values in Jframe ?  hi i m doing my project using java desktop application in netbeans.i designed a form to get the user's academic details and on clicking the submit button,it displays all
JDBC and Aggregate values
JDBC and Aggregate values  How to get the aggregate value using JDBC? Like I am executing the statement "Select Max(ItemId) from Items", and I get only one row, only one column in return and I want to get that data using JDBC
Getting image pixel values
Getting image pixel values  how to get image pixels values on mouse click   import java.awt.*; import java.awt.event.*; import java.awt.image.BufferedImage; import java.io.*; import javax.swing.*; public class
How to save and get value from JSP
to action ...how can i get all value ..and store..how can its values goes...How to save and get value from JSP  Employee Name Time-IN Time-OUT Date t1 9 7 2012-12-12 t2
Get the color values as a matrix of color image
Get the color values as a matrix of color image  I am new to java and image processing, i want to get the color values as a matrix from the color image for giving input to the compression algorithm by using java. plz provide
Getting text values from a NodeList
Getting text values from a NodeList       This Example shows you how to Get Text values from... = element1.getChildNodes():-By the use of this method we can get the collection of childnodes
how to set the values in jsp
how to set the values in jsp  how to set the values text boxs in jsp frm dbase via servlet
how to get the next option - Java Beginners
how to get the next option  i was getting values from the database it was bulk so i want to keep the next option how to do in the jsp  Hi Friend, Please visit the following link: http://www.roseindia.net
Get values from JSP pages - JSP-Servlet
Get values from JSP pages  I have welcome.jsp in which it has... I need to get the value of those column names(First Name, Second... or input fields.   Hi Friend, Do you want to pass the column values
how to store array values into two different tables in java?
how to store array values into two different tables in java?  I have use 4/5 textboxes with same name(e.g.text1) and I get the values in a array and now I want to store these values in two different tables(i.e store 2 array
Database values in JComboBox
Database values in JComboBox In this section, you will learn how to display values in JComboBox from database. For this, we have allowed the user to enter... the database will get displayed on the ComboBox. If there will be  no data
how to read values from excel sheet and compare with database using jsp
how to read values from excel sheet and compare with database using jsp  hi sir i am arun how to read values from excel sheet and compare... values matches then the rest(cubical,facility,sublocation) should get updated
How to extract values from SOAP Response message and insert in database
How to extract values from SOAP Response message and insert in database  Hi I have one urgent requirement in my project which means I need to get values from SOAP Response XML (i.e. Empname,EmpID,Phnumber) but I don't have any
How to get an Id vaue - JSP-Servlet
How to get an Id vaue  Dear Sir, Thanks for posting...("./jsp/delete1.jsp"); then it sis going to that jsp where i need a id values... values their so please help me sir... Thanks and Regards Harini Veerapur. 
how to display values from database into table using jsp
how to display values from database into table using jsp  I want to display values from database into table based on condition in query, how... the values from database based on the bookname or authorname entered must be display
How to retrieve array values from html form to jsp?
How to retrieve array values from html form to jsp?  Hi! I am... sample code for how to retrive array values from html to jsp.   hi friend, To get an array values from the html form you can use the getParameterValues
I cant get values in MS acces in tables
I cant get values in MS acces in tables   I got problem in sending values from servlet . * i am using ms acces * i cant display my values but der... into registration (username,lastname,email,reemail,password,gender,dob) values
how to pass values from 2nd page tp 3rd page....
how to get the values(of userid) from Login1.jsp.... plz help me...how to pass values from 2nd page tp 3rd page....  Hi, How to pass...; Login1.jsp : In dis , to get the values from Login.jsp,i ve used: <form
Struts2...problem in JSP..unable to get the values for menuTitle!!!
Struts2...problem in JSP..unable to get the values for menuTitle!!!  **Hello everyone... i'm trying to make a dynamic menu from database in struts2...n m fairly new in this framework.. there is some problem in this project...my

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.