Forums Register Login

assign a bean value to a string

+Pie Number of slices to send: Send
how to assign a bean value to a string...
i am using this code


String s="<%= beanid.getProperty()%>";

but it is giving me an error... someone help please
+Pie Number of slices to send: Send
Could you provide a little more information?
+Pie Number of slices to send: Send
thanks a lot for your reply ....


<%@ page language="java" import="java.sql.*"%>
<body>
<jsp:useBean id="SBean" scope="request" class="vikhyath.StudBean">
<jsp:setProperty name="SBean" property="*" />
</jsp:useBean>
The details you have entered are : <BR><BR>

Name : <jsp:getProperty name="SBean" property="name" /><br>
ID : <jsp:getProperty name="SBean" property="id" /><br>
Branch : <jsp:getProperty name="SBean" property="branch" /><br>
Marks : <jsp:getProperty name="SBean" property="marks" /><br>
Attendance : <jsp:getProperty name="SBean" property="atten" /><br><br><BR>
<%
String s="<%= SBean.getName() %>"; // ERROR !!! i want to assign a bean //property to a string so that i can use it in a session to insert the data //into mysql !
String name=request.getParameter("name");
String sid=request.getParameter("id");
String branch=request.getParameter("branch");
String marks=request.getParameter("marks");
String atten=request.getParameter("atten");
String pass="student";
try {
Statement stmt;
Class.forName("com.mysql.jdbc.Driver");
String url ="jdbc:mysql://localhost:3306/vikh?user=root&password=admin";

Connection con =DriverManager.getConnection(url);

stmt = con.createStatement();


stmt.executeUpdate("insert into studb values ('"+name+"','"+pass+"','"+sid+"','"+branch+"','"+marks+"','"+atten+"');");
out.println("Updation successfull !");



con.close();
}catch( Exception e ) {
e.printStackTrace();
}%>
<pre><form action="front_store.html"><br>
<input type="submit" value="Enter New">
</form>
</body>
</html>
+Pie Number of slices to send: Send




it should bave been like

[ December 08, 2008: Message edited by: Sri Anand ]
+Pie Number of slices to send: Send
maaaaaaaan thanks a lot... thank you very very much.. i cant thank you enough... i was going mad over this for a week now.. Sri Anand YOU ROCK !! ... i am a newbie so still learning ! Prateek thanks to you too
+Pie Number of slices to send: Send
Glad, we could help.
If you have a bad day in October, have a slice of banana cream pie. And this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 4310 times.
Similar Threads
how to assign bean value to jsp variable
Convert Long to String inside JSF el expression
Calling method in the outputText value attribute
Assigning a java variable a value from struts tag
illegal start of an expression
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 29, 2024 09:27:38.