Re: Charset problem.

2001-11-21 Thread James Childers
MySQL supports mutli-byte characters (Unicode), but it has to be recompiled to support this. Are you sure that MySQL is storing the data correctly? > -Original Message- > From: A mailing list about Java Server Pages specification > and reference [mailto:[EMAIL PROTECTED]] On Behalf Of > D

Re: Using JSP and Flash Together, How is it done?

2001-11-21 Thread James Childers
What are you wanting to do with them? Flash is really not related to JSP (or any server side scripting language). You don't need JSP to display Flash, just an HTML tag. > -Original Message- > From: A mailing list about Java Server Pages specification > and reference [mailto:[EMAIL PROTEC

Counting body tag elements in custom tag

2001-11-16 Thread James Childers
All, I am implementing a custom tag to display a breadcrumb. The tag will look like this: Home BleCH Blarg The results from the tag will look something like this: Home > BleCH > Blarg However, in order to determine whether or not to display the >'s, I need to

Re: Beginners tutorial

2001-10-29 Thread James Childers
* On Tue, Oct 30, 2001 at 09:02:40AM +1100, the featherless biped known as Theo Starr <[EMAIL PROTECTED]> wrote: > I am not a JSP guru but I do agree with you. > > I have studied JAVA and Object Oriented Programming for 18 months and have just >begun to look at JSP. In my opinion if I didn't ha

(Query)String to java.sql.Date

2001-10-19 Thread James Childers
I spent most of yesterday afternoon getting a string pulled in via a request.getParameter properly typed so that it could be updated or inserted into our Sybase backend. I searched the archives and wasn't able to find anything that specifically talked about how to do this, so I wanted to share.

Re: Help on JSP formatting.

2001-09-26 Thread James Childers
That's really what we're talking about here. Good luck! - James Childers === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: &

Breadcrumbing Design Pattern

2001-09-18 Thread James Childers
ed to the site a corresponding entry will need to be made in the DB. Suggestions? - James Childers === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED]

Re: recompiling JSP pages

2001-09-06 Thread James Childers
Troy, Try a simple "touch *" in the JSP folder. Nice n 'easy. - James > Does anyone know how to recompile a folder full of JSPs > without opening and making a change to each one (this is a > SOLARIS UNIX MACHINE)?? === To

Re: Creating a JSP Function

2001-08-29 Thread James Childers
> How do I create a simply function into a JSP scriptlet? I'm > developing an application than cannot call a Servlet. Very easy. You need to put the function definition in the bottom of the code. It'll look like this: <%! public String printVomitVolume (boolean isDisgusting) { [function

Re: Result Set and Servlet

2001-08-29 Thread James Childers
> I´m a newbie and struggle with the following problem: > I want the RestultSet to write out every database record, > between two horizontal lines, but it doest not work. I have a > method, that converts everything to HTML, and I want a for > loop, to perform this method on every Record in the

Re: forward / sendRedirect

2001-08-27 Thread James Childers
> Delivered-To: [EMAIL PROTECTED] > Date: Mon, 27 Aug 2001 16:03:34 +0700 > From: Dinesh Somasundram <[EMAIL PROTECTED]> > Subject: forward / sendRedirect > To: [EMAIL PROTECTED] > > Hi All, > > I have a page. In the middle of the page, if a certain condition is true, I > want to go to a different

Re: URGENT How TO Handle (MULTIPLE FORMS)

2001-05-29 Thread James Childers
jyothirmai porika wrote: > I have a jsp page with 3 forms. > What i want to do is when the 2nd form is submitted, fist and third should > not be submitted and vice versa. > I tried to submit by calling each submit based on condition, > But it's not working. > How can i handle multiple forms. Sty

Problems with for loop (!)

2001-05-16 Thread James Childers
Sometimes the simplest things cause the most problems... The following code is giving me problems: for (int t = Integer.valueOf("minModStr"); t <= 25; t++) { out.println("" + t + ""); } The error it returns is: Error: The type of the left-hand side in this assignment, "int"