Re: Disabling Back & Forward Buttons of IE

2002-01-03 Thread King Maurice
Also I have the code that disables the warning in IE for window.close Here it is function Start() { setTimeout("opener.location.reload(false);maurice = window.self;maurice.opener = window.self;maurice.close();", 0*1000); } - Original Message - From: "Chen, Gin" <[EMAIL PROTECTED]> To: <

IE Security Issue in JSP

2002-01-03 Thread Mohan kumar Gowri sankar
Hi, I use JSP and Java script to populate a dropdown list.The brief functionality of the code is JSP fetches data from DB and Java script populate dynamic list(HTML Select Box).Sometimes when I run this JSP code the browser says "You are Unauthorized to view this page".Next time the same piece

Re: substring ( ) question

2002-01-03 Thread Vikramjit Singh
theres nothing wrong works perfectly fine. Vikramjit Singh, Systems Engineer, GTL Ltd. Ph. 7612929-3140 -Original Message- From: Miao, Franco CAWS:EX [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 2:53 PM To: [EMAIL PROTECTED] Subject: Re: substring ( ) question thanks fo

Tag libs, JavaScript, XML

2002-01-03 Thread Joe Blow
Hello everyone, I'm trying to merge the code accompanied by following articles http://developer.java.sun.com/servlet/PrintPageServlet?url=http%3A//developer.java.sun.com/developer/technicalArticles/javaserverpages/jsp_templates/ and http://www.devx.com/premier/mgznarch/javapro/2001/04apr01/dw0

Re: Netscape refresh() question...

2002-01-03 Thread Anthony Tagunov
Hello Brian! BB> In javascript, using onChange(), I am trying to repopulate the BB> contents of another select box. The problem is that with Netscape, the BB> page reloads itself to try and display the new option() values... How do you repopulate this other select box? Could you post a fragmen

Re: JSP "Page has expired" Error

2002-01-03 Thread Anthony Tagunov
Hello Jack! Thursday, January 03, 2002, 8:08:04 PM, you wrote: JX> I need some help on this problem: JX> Consider the following scenario: JX> Two pages: page A, and page B. page A has a link to page B. JX> Page A uses: JX> response.setHeader("Cache-Control","no-cache"); //HTTP 1.1 JX> respons

Re: substring ( ) question

2002-01-03 Thread MARSHALL,John
how about import packages? -Original Message- From: Miao, Franco CAWS:EX [mailto:[EMAIL PROTECTED]] Sent: Friday, 4 January 2002 9:53 To: [EMAIL PROTECTED] Subject: Re: substring ( ) question thanks for help. public class substring { public static void main(String args[]) {

Re: substring ( ) question

2002-01-03 Thread Richard Yee
Franco, It must be your command line or environment. It compiles and runs fine for me. Regards, Richard At 02:53 PM 1/3/2002 -0800, you wrote: >thanks for help. > >public class substring { > >public static void main(String args[]) { > > > System.out.println( "example".substrin

Re: substring ( ) question

2002-01-03 Thread Miao, Franco CAWS:EX
thanks for help. public class substring { public static void main(String args[]) { System.out.println( "example".substring(2, 4)); } } I try to compile this, but error message happen, do u have idea anything I miss in my code? thanks. Franco -Original Message--

Re: substring ( ) question

2002-01-03 Thread Chris Pratt
Well, not that it's really a JSP question, but according to the javadocs that came with your JDK, the answer is "am". Because the parameters are the starting index (inclusive) and the ending index (exclusive). So, in your example, you'd get characters 2 and 3. (*Chris*) - Original Messa

substring ( ) question

2002-01-03 Thread Miao, Franco CAWS:EX
Hi there, what is outcome of method substring (2, 4) on string "example"? and why? Thanks, Franco === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with

Netscape refresh() question...

2002-01-03 Thread Brian Bohnet
When calling an updateData.jsp from a viewData.jsp I automatically populate option boxes with current data stored in session. (You know, loop thru the option object and when you find a match, make it selected) In javascript, using onChange(), I am trying to repopulate the contents of another

Re: JSP "Page has expired" Error

2002-01-03 Thread Eric Fleming
I have also encountered this problem and I am not sure how to solve it, please forward suggestions to me as well.   Eric   - Original Message - From: Jack Xu To: [EMAIL PROTECTED] Sent: Thursday, January 03, 2002 12:08 pm Subject: JSP "Page has expired" Error

JSP "Page has expired" Error

2002-01-03 Thread Jack Xu
I need some help on this problem:   Consider the following scenario:   Two pages: page A, and page B. page A has a link to page B.   Page A uses: response.setHeader("Cache-Control","no-cache"); //HTTP 1.1response.setHeader("Pragma","no-cache"); //HTTP 1.0to expire the page once it is loaded

Re: Problem locating ispai_redirect.dll

2002-01-03 Thread Hessing Ingo
Hi! Wouldn't say that this howto is more complete because it is written for the Tomcat 3.2.X distribution and therefore doesn't mention any 4.0.1 related things (for example it doesn't cover the newer ajp13-connector). Nevertheless a good tutorial - just keep in mind that it doesn't cover the new

Re: Problem locating ispai_redirect.dll

2002-01-03 Thread Chen, Gin
Not as detailed but easier to follow and more complete: http://www.verysimple.com/scripts/support_tc_iis.html -Tim -Original Message- From: Hessing Ingo [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 9:48 AM To: [EMAIL PROTECTED] Subject: Re: Problem locating ispai_re

Tomcat 4 JAR vs. ZIP

2002-01-03 Thread [Moisey Oysgelt]
I'm moving my application from Tomcat 3.3 to Tomcat 4.0.1 The appellation using Oracle database. I'm using an Oracle driver coming with Oracle distribution ( classes111.zip, classes12.zip). Tomcat 4 has a new loader . This loader loads class files for WIN_INF/class

Re: Problem locating ispai_redirect.dll

2002-01-03 Thread Hessing Ingo
Hi! Yep, that isapi_redirect.dll of the Tomcat 3.3 distribution works with Tomcat 4.0.1, too. It integrates the IIS and Tomcat using an ajp13-connector (which means that inprocess workers are not possible by the way). See this howto: http://www.vacodi.com/howto/tomcat/iisnt/index.html bestWISHE