Re: Special Characters

2001-04-11 Thread R.Muthukumar
___ > > Lee Turner > Systems Developer > Information Technology Leeds > _ > > Watt Gilchrist Ltd > Ring Road, West Park > Leeds, LS16 6RA > Tel: 0113 288 3200 > Fax: 0113 275 1690 > http://www.wattgilchrist.co.uk > __

Re: Special Characters

2001-04-11 Thread R.Muthukumar
Hi Lee, Instead of using the URLEncoder and URLDecoder, use the asp equivalent of htmlEncode method. Just call this method before u insert the values into Oracle. public static String htmlEncode(String text) { if (text == null) { return ""; } StringBuffer results = null; char[] or

session problem

2001-04-11 Thread R.Muthukumar
Hi! In my application, when the user logs in, three frames are loaded. onClick on the right side frame, the content in the centre frame and left side frame are changing. This is working fine if single user uses the application. If more than two three people access the same page, then I am getting

Oracle:jdbc problem

2001-04-01 Thread R.Muthukumar
Hi folks, I am facing a wierd problem and is kinda urgent.. I have my JSP file calling a method on a bean which executes a whole set of queries on the backend..Lets say,my bean does 20 different "select * " all from 20 different tables ..Which means there are 20 different select statements ex

Relative path...?

2001-03-30 Thread R.Muthukumar
In my Javabean, I am refering to a property file from where the bean takes the information about the databaseName, url, username and password. The properties file is in a folder called cfg. My DBconnectionBean.java file is in the package beans. If I use the relative path ../cfg/config.properties I

Re: Jsp equivalent ....

2001-03-27 Thread R.Muthukumar
Response.encodeURL(string)... > > > -Original Message- > > From: ext R.Muthukumar [mailto:[EMAIL PROTECTED]] > > Sent: 27. March 2001 13:27 > > To: [EMAIL PROTECTED] > > Subject: Jsp equivalent > > > > > > Hi! > > In Asp we can write somethi

Jsp equivalent ....

2001-03-27 Thread R.Muthukumar
Hi! In Asp we can write something like lTitle = Server.HTMLEncode(Request("Title")) lHTMLpara = lHTMLpara & "" & Chr(13) Can any one say what is the jsp equivalent for Server.HTMLEncode...? Thanks in advance.. Muthu === To un

Plugin for Activex in JavaWebserver

2001-03-22 Thread R.Muthukumar
Hi! Is there any plugin for the Javawebserver for running the Activex? If so, Please let me know the URL. Thanks in advance. Muthu === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: ma

Problem in inserting data into Oracle

2001-03-21 Thread R.Muthukumar
Hi! >From the Jsp page, I am trying to update a record in oracle . Since oracle doesn't allow to enter values like the string given below... This is the string with check's and result's. I have to convert the single quotes into double quotes and insert..? Can anyone throw some light on how to go a

Re: shopping cart help

2001-02-27 Thread R.Muthukumar
Hi! when you use request.getParameter("book_id"), it will return a string value. You are trying to store a string into an integer. You have to type cast it like the below, <% int ibook_id = Integer.parseInt(request.getParameter("book_id")); %> Another mistake you have done is inside the request.ge

Re: Expression evaluation for an expression ??????

2001-02-27 Thread R.Muthukumar
please write properly... It should be <%String str="";%> <%str="Hello World";%> <%=str%> Otherwise you can write like this, <% String str ="Hello World" ; %> <%=str%> Rgds Muthu - Original Message - From: "Jay P" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 27, 20

spliting a comma seperated string

2001-02-15 Thread R.Muthukumar
Hi! I have a string like "I am, you are, we all, go for meeting". I want to split this string into different strings and store into an array. The array should contain I am as the first element and you are as the second element and so on. That is my requirement is to split the string where were it

Passing Objects between different Jsp pages

2001-02-14 Thread R.Muthukumar
Hi! Can anyone tell me how to pass Objects between different jsp pages? Will be helpful if you could provide with example codes... Thanks in advance Muthu === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff J