Atal Bihari Upadhyay wrote:
> Somehow, I got this feeling in case of questions on JSP as well.
> Anyway, I would appreciate if you send me some site names where I can post
> javascript related questions.
How about searching for "JavaScript forum" on Google? I bet you find
a lot of them.
One spec
Somehow, I got this feeling in case of questions on JSP as well.
Anyway, I would appreciate if you send me some site names where I can post
javascript related questions.
Thanks in advance..
-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto
Atal Bihari Upadhyay wrote:
> Is this forum meant only for simple questions???
> At least, I don't think so.
No, but it's a forum decicated to JSP questions, and your question
is about JavaScript. Even though JavaScript may be combined with JSP,
it's a completely separate technology and there ar
you check which version of Netscape and Javascript you are using. Coz if you
are using javascript 1.2 most of the lower versions browser dont support it,
and some of the scripts are compatible only with Microsoft IE. Since they
support javascript 1.0.
So check which version of javascript u r usin
Hi Ramesh..
In your connection line,
conn=DriverManager.getConnection("jdbc:oracle:[EMAIL PROTECTED]:1521
:BIST1", "oaxapr","oaxapr");
Pls note the following things..
1)bis6.xxx.x.xx.xx: This should be your Oracle Server host name/IP
address.
Oracle Listener should run at 1521 port only. Other
Is this forum meant only for simple questions???
At least, I don't think so.
Pls help me out as I'm facing following problem since long.
-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Atal Bihari Upadhyay
just append the for loop var say "i" with checkbox name to form the unique checkbox
name and retrive also in same manner
Regards,
Mittal S.Bhiogade
-Original Message-
From: Duc Nguyen [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 11, 2002 2:51 PM
To: [EMAIL PROTECTED]
Subject: Form Co
Hi all,
I have an HTML form that generate on the fly depending on the number of record that returned from the database. For each record I will generate a check box for user to select. My question is when the user submit the form on my processing page how do I find out which check box was checked.
Thank you. Thank you.
It worked. thanks a lot.
Ramesh Kadirisani.
"It, Cockpit (CAP, Contractor)" wrote:
>
> Dear Ramesh,
> You are missing ":" next to thin...
> If you give as follows it will work
>
> try this...
>
> conn =
>
> DriverManager.getConnection("jdbc:oracle:[EMAIL PROTECTED]:1521
you are correct. he is missing the ":" on the right side of 'thin'.
"jdbc:oracle:thin:@bis6.xxx.x.xx.xx:1521:BIST1"
Ben
>>> [EMAIL PROTECTED] 07/11/02 08:54AM >>>
Dear Ramesh,
You are missing ":" next to thin...
If you give as follows it will work
try this...
conn =
DriverManager.g
Dear Ramesh,
You are missing ":" next to thin...
If you give as follows it will work
try this...
conn =
DriverManager.getConnection("jdbc:oracle:[EMAIL PROTECTED]:1521:BIST
1",
"oaxapr","oaxapr");
Yogaraj
-Original Message-
From: Ramesh Kadirisani [mailto:[EMAIL PROTECTED]]
Sent
Hi Ben,
thanks for the response. i tried the way you suggested. no luck. is
there anything else i have to check?
thanks,
Ramesh Kadirisani.
Ben Steiner wrote:
>
> instead of
> conn =
>
>DriverManager.getConnection("jdbc:oracle:[EMAIL PROTECTED]:1521:BIST1:oaxapr/oaxapr");
> it should work this
instead of
conn =
DriverManager.getConnection("jdbc:oracle:[EMAIL PROTECTED]:1521:BIST1:oaxapr/oaxapr");
it should work this way...
conn =
DriverManager.getConnection("jdbc:oracle:[EMAIL PROTECTED]:1521:BIST1",
"oaxapr","oaxapr");
Ben
>>> [EMAIL PROTECTED] 07/11/02 07:51AM >>>
hi,
i am tryi
I dont think you can bypass the user confirmation.
At 02:21 PM 7/11/2002 +1000, you wrote:
>hi,
>
>i have a client requirement on this print. If i use window.print(), then the
>print widow will popup asking for the user confirmation. my requirement is
>that when ever i open a popup windo
hi,
i am trying to use oracle jdbc driver in my jsp program to connect to oracle database
and i am getting the following error.
java.sql.SQLException: Invalid Oracle URL specified
The following is part of my coding:
<%@ page import="java.sql.*,java.io.*, oracle.jdbc.driver.*"%>
<%
Connection c
Hasnt this question been answered many times. ;)
When a sendRedirect() method is invoked, it causes the web container
to return a response back to the browser with information that a new URL
should be requested. Because the browser issues a completely new request,
any objects that are sto
Try this
System.out.println(System.getProperty("user.name"));
System.setProperty("user.name","a");
System.out.println(System.getProperty("user.name"));
It prints the changed value.
-Original Message-
From: Aruniima Chakrabarti
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 11, 2002 3:3
> Content-Type: application/octet-stream;
Unknown command - "CONTENT-TYPE:". Try HELP.
> name=logo1[1].jpg
Unknown command - "NAME=LOGO1[1].JPG". Try HELP.
> Content-Transfer-Encoding: base64
Unknown command - "CONTENT-TRANSFER-ENCODING:". Try HELP.
> Content-ID:
Unknown command - "CONTENT-ID:
I am using the following code but it is still not changing the env variable
as I want it to... it still remains same as the old user name... any idea
why so???
class SetEnv
{
public static void main(String[] args)
{
SetEnv se = new SetEnv();
String
Thanks... got it...
The program has to set some environment variables on the user machine...
Regards,
aruniima
-Original Message-
From: Bhushan_Bhangale [mailto:[EMAIL PROTECTED]]
Sent: 11 Jul,2002 3:02 PM
To: [EMAIL PROTECTED]
Subject:Re: Environment Variable
Check th
Get the System properties and set the variables you want to set.
Properties prop = System.getProperties();
prop.put(key, value);
Hope this will help you.
Aruniima Chakrabarti wrote:
> How Can I set environment variables using Java code??
>
> Regards,
> aruniima
>
> ---
Check the java.lang.System class there using the setProperty method you can do. But
tell me what you want to achieve?
Thanks & Regards
Bhushan Bhangale
Programmer Analyst
Infosys Technologies Ltd.
Pune - 411042
Tel: (Office) +91 (20) 2932800/01 Ext. 6129
E-mail: [EMAIL PROTECTED]
-O
How Can I set environment variables using Java code??
Regards,
aruniima
This message contains privileged and confidential information and is
intended only for the individual named. If you are not the intended
recepien
hi,
i have a client requirement on this print. If i use window.print(), then the
print widow will popup asking for the user confirmation. my requirement is
that when ever i open a popup window, it should directly print.
thanks,
vijay
- Original Message -
From: "Senthilkumar ,T.P (CTC)" <
Hi all,
What is the difference between getServletContext().getRequestDispatcher(),
response.sendRedirect(),jsp forward tag, include directive Everything
forwards the request to another servlet / jsp. What are the differences and
in which case I should use which method. Pls explain me / Provide th
You can open the JSP file through a normal window open method. Set the
height and widhth of the window according to your convenient size. On load
of the JSP file you can call window.print() method.
If you want to open it through a modal window use showModalDialog method in
Javascript and open the
1. put them in the servervariables
2.put them in the applicationContext
yes you can,but can.t use [include] to get it
can you get it by access a file ?
- Original Message -
From: "Josep R. Raurell" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, July 11, 2002 4:02 PM
Subject:
hi all,
i have an urgent requirement.. Can any one suggest some idea on this.
I have to popup an window, which has a JSP file. I need to print it, when it is
opened. And also i need to minimize the popup window..
thanks,
vijay
==
28 matches
Mail list logo