Re: JSP International Conversion

2001-04-11 Thread Murugan Patham
Visit technet.oracle.com Go to the documentation menu on the side frame. You can find answers to all your questions. you have to register to access the site but it is free. >>> [EMAIL PROTECTED] 04/10 10:02 PM >>> Hi all, I have been asked to convert a English JSP website to international

Re: Search Code

2001-03-02 Thread Murugan Patham
It should be like this: strSelect = "SELECT ISBN, V_Title, V_Type, V_Actor, V_Time FROM Video_Catalog where 1 = 1"; if Type is not null or Type != "ALL" strSelect = strSelect + "And VideoType = '" + Type + "'" end if if Title is not null strSe

Re: test page doesn't function as it should

2001-03-01 Thread Murugan Patham
Check whether New Atlanta's Exec Server is compatible with JSP. It seems not, thats why you are getting only the two lines. Regds Murugan K Patham 480 - 990 4200 Ext 2712 >>> [EMAIL PROTECTED] 02/27 11:37 AM >>> I have a very simple 'Hello World" page. It works in JRun server in Windows env

Re: Compiling question ? Thanks

2001-02-27 Thread Murugan Patham
Copy the MultipartRequest.java in the c:\com\oreilly\servlet\ directory. Copy your UploadTest.java in one of the directories which is included in the ClassPath. now compile using javac UploadTest.java Copy the UploadTest.class to your WEB-INF\classes\ directory, it should work Regds Mu

Re: off toppic (sql query how to) thanks

2001-02-27 Thread Murugan Patham
Your Query should be like this: String strCrit = // The Value you as A B C D Z based on the alphabet pressed & '%' Select * from Employee where LastName Like strCrit; This will fetch all rows starting with the Alphabet 'A..' say if strCrit is 'A%' Regds Murugan K Patham 480

Re: problem after complying

2001-02-12 Thread Murugan Patham
Do you have Oracle 8i installed in your system. If then check the classpath and point it to the Java Classpath. Regds Murugan K Patham 480 - 990 4200 Ext 2712 >>> [EMAIL PROTECTED] 02/12 3:54 PM >>> I have several programs that give me the same error. Exception in thread "main" java.lang.No

Re: JSP forward

2001-01-30 Thread Murugan Patham
Little more details : in your registration.jsp you should have something like this xxx.jsp should have : <% if (request.getParamter("action" ) = "Accept" ) { %> <% } else { %> <% } %> Regds Murugan K Patham 480 - 990 4200 Ext 2712 >>> [EMAIL PROTECTED] 01/30 12:58 PM

Re: JSP forward

2001-01-30 Thread Murugan Patham
As you said, use JSP forward as follows: Have another as xxx.JSP, in the confirm.jsp form action call this xxx.jsp <% if request.getParameter(action) = "Submit" {// check the correct syntax and attribute name as per your code %> <% } else { %> <% } %> Regds Murugan

Re: Form Submission to new window

2001-01-22 Thread Murugan Patham
You have to write JavaScript for this Write a function which will open the new window and put the form contents into it. function CreateWindow(f) // where f is the form you want to submit { myWin = window.open("","NewWindow","toolbar=no,menubar=yes,location=no,resizable=no,width=450,he