Home Answers Viewqa JSP-Servlet Sending query with variable

 
 


Jagadeesh
Sending query with variable
1 Answer(s)      3 years and 2 months ago
Posted in : JSP-Servlet

While displaying pages in frames concept, one page contains links and other page contains messages for that links. The links page is not static one.

Links page displays the contents from database and query should have a variable at the end. While using this variable we have to use single quotes . This does not show the write content in message page. How can we resolve this.


Static page link:
<a href="memspage.jsp?nou=201">

But in case of static page
<a href="mempage.jsp?nou='userno'">
here userno--> variable which contains no. that is retrieved from database.
Using userno within single quotes shows error.

RESOLVE MY PROBLEM.
Thanks.
View Answers

March 16, 2010 at 2:25 PM


Hi Friend,

Try the following:

1)a.jsp:

<html>
<script language="javascript" type="text/javascript">
var ide = 1;
openPage = function() {
location.href = "b.jsp?id="+ide;
}
</script>

<a href ="javascript:openPage()">Click </a>
</html>

2)b.jsp:

<%String ide=request.getParameter("id");

out.println(ide);
%>

Hope that it will be helpful for you.
Thanks









Related Pages:
Sending query with variable - JSP-Servlet
Sending query with variable   While displaying pages in frames... database and query should have a variable at the end. While using this variable we... page here userno--> variable which contains no. that is retrieved from
Query
Query  how can i set path and Classpath or Environmental Variable for jsp/servlet program to compile and run
Query
Query  //A.java public class A { static int a=regd; public A() { } } //B.java public class B { static int b=A.a; public A() { } } I created two classes separately.Here regd is dynamic variable means it's varying with the given
Query
Query  How can i call a static variable of one class to another class. can i change static varibale value. //A.java public class A { static JTextField p=null; static int k; public A() { } public actionPerformed(ActionEvent ae
Create Session Variable PHP
session Variable in PHP. May be this reference will solve your query. Thanks...Create Session Variable PHP  hi, Write a program which shows the example of how to create session variable in PHP. Please suggest the reference
javascript query
javascript query  how to get javascript variable value into java variable?? i have one value in javascript variable(var name = value ) i want this name variable value in java variable (string name1
query string
query string  on my servlet page i take the values of the field in a variable and that variable is a primary key so on the basis of that i am sorting database and printing on another page. i have to take that variable from
session into a query
session into a query  Hi all this am Sreedhar from Hyderabad i am calling one session variable in mysql query but its not working can any one help me please... here is the query.. $query = 'SELECT * FROM post WHERE post_date <
select query
select query  how to write select query with where clause having multiple variables. example: i want to select the data from DB in which i want to check againest two variable in where cluase. String sql = "select * from
sql query
sql query  SQL QUERY BROWSER declare @cout00 int declare @cout01 int...); this is the query i have written for the table "dpscomp" - station date month... cout00,cout01,cout10,cout11 in which the values of counted rows is declared in that variable
PHP SQL Variable
PHP SQL Variable       PHP SQL Variable are denoted with a leading dollar sign ($). The PHP  variable includes $ con , $ update and so on. Understand with Example This example
Php Sql Variable
Php Sql Variable This example illustrates how to create the variable in php for sql operation. In this example we create a variable $con for mysql connection and $update for query. The sign ($) is used to create the variable in php
Using Unicode Variable Names - Java Tutorials
Using Unicode Variable Names 2001-11-23 The Java Specialists' Newsletter [Issue 036] - Using Unicode Variable Names Author: Dr. Heinz M. Kabutz... members are currently subscribed from 56 countries Using Unicode Variable
Sending large data to Action Class error. Struts code - Struts
Sending large data to Action Class error. Struts code  I have a jsp page and there is a button which is a image type ,when i click on the button I am...);} and in action class i want to get the value of variable 'val'.But since this is large
Local Variable and Instant Variable
Local Variable and Instant Variable  difference between Local Variable and Instant Variable   Difference between local variable and instance variable Instance variable is declared within a class but not within
sending mail - JSP-Servlet
sending mail  Hi, what is the code for sending mail automatically without user intervention? thanks in advance
sending mails - JSP-Servlet
sending mails  my intension is sending mails through java program with out installing any softwares.what is code
sending mails - JSP-Servlet
sending mails   sending mail using smtp protocal ,while running,i got error an javax.mail.sendfailed exception. what is this error
sending emails - JavaMail
sending emails  what is the code for sending emails in java  Hi Friend, Please visit the following link: http://www.roseindia.net/javamail/ Hope that it will be helpful for you. Thanks
sending data to facebook
sending data to facebook  how to post data into facebook from a java program
sending mail using jsp
sending mail using jsp  please give me the detailed procedure and code for sending mail through jsp program   Please visit the following links: http://www.roseindia.net/ejb/introduction/j2eedemo.shtml http
Passing Parameter Values to another jsp in Query Strings
Passing Parameter Values to another jsp in Query Strings  HI ALL, I m trying to pass a variable value to another JSP using query string... even though some values* stored in the variable loginid. Can any one suggest
Sending email without authentication
Sending email without authentication  Hi sir, Am doing a project in JSP, in that i want to send mail without any authentication of password so send.../mail/sending-an-email-in-jsp.shtml
Sending File - JSP-Servlet
Sending File  How to use tag in Jsp, & How read a file fom Client  Hi Friend, We used tag to upload a file. Please visit the following links: http://www.roseindia.net/jsp/fileupload.shtml http
sending a mail - JSP-Servlet
sending a mail   I m writing a code for send mail in jsp,i sending a mail to specified receiver but if i attach an file and send a mail then i m getting an error. Here Attachment is in String[] Attachment=null so how
for sending project build
for sending project build  hello I want to send my iphone project build to someone else how can i send it...   yes you can send but Follow the steps on the portal to creating an ad hoc build and certificate. Look
Sending Emails In Java
Sending Emails In Java  I want to send emails from within a java program. I saw some online java programs to do that, but they needed me to enter a smtp server, but i don't know what that should be. Can someone please help
Sending Emails In Java
Sending Emails In Java  I want to send emails from within a java program. I saw some online java programs to do that, but they needed me to enter a smtp server, but i don't know what that should be. Can someone please help
Sending Emails In Java
Sending Emails In Java  I want to send emails from within a java program. I saw some online java programs to do that, but they needed me to enter a smtp server, but i don't know what that should be. Can someone please help
java mail sending with images
java mail sending with images  I need to send images through java mail without giving content path(i.e. we don't want hard code the image path)can you tell me the idea?   Please visit the following links: http
sending a zip file to servlet
sending a zip file to servlet  I have created a .zip file in a servlet on the local system(no static ip). The .zip file contains xml files. I have to send it to another servlet which is in a server(has a static ip). I have done
Pointer a variable
Pointer a variable  hii, Pointer is a variable or not ?   hello, Yes, a pointer is a variable
Java variable
Java variable   To what value is a variable of the String type automatically initialized
sending automatic email - JavaMail
sending automatic email  Dear sir. In my project i need to send an automatic email to the clients when their accounts are going to expire in 30 days.i am using jsp,mysql and tomcat for my project.Expire information are stored
regarding sending mesage - JavaMail
regarding sending mesage  i have tried the following program /* import java.util.*; import javax.mail.*; import javax.mail.internet.*; import... me in this regard   Hi friend, I am sending you a link

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.