Re: Ok, I'm new to JSP

2002-05-16 Thread Mark Lines-Davies
Chris "beans = COM objects"? I guess it depends on the style of your old ASP pages. If they accessed multiple COM DLLs, then yes. But if you had a single COM DLL exposing multiple interfaces, then the equivalent is simply to write your Java classes and parcel them up in a JAR. Tell your JSP serv

Re: Amazing script

2002-05-15 Thread Mark Lines-Davies
Subbu It's because floating point numbers are only completely accurate for numbers that are powers of 2 (e.g 1,2,4,8 going up,0.5,0.25,0.125 going down etc) and numbers that are combinations of these, e.g. 3 (2 + 1), 1.75 (1 + 0.5 + 0.25) etc. 1.1 isn't one of these numbers, so internally it wil

Re: GIF Modification

2002-03-06 Thread Mark Lines-Davies
Most of what I used was the imaging stuff in the standard Java libraries - java.awt.image etc, which has all the stuff for setting up image buffers and drawing on them." Hope this helps. Mark Lines-Davies -Original Message- From: A mailing list about Java Server Pages specifi

Re: jspInit and load-on-startup

2002-03-01 Thread Mark Lines-Davies
;Hi there"); %> -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Mark Lines-Davies Sent: 01 March 2002 15:12 To: [EMAIL PROTECTED] Subject: jspInit and load-on-startup Hello I would like to have a JS

jspInit and load-on-startup

2002-03-01 Thread Mark Lines-Davies
rtupInterceptor: Initializing JSP with JspWrapper". If I then make a browser call to this JSP page I get Hello World Normal call and subsequent calls just give "Normal call". I guess I have misunderstood what is for? regards Mark Lines-Davies ***

Re: WAP /TOMCAT 4.01

2002-02-26 Thread Mark Lines-Davies
way, and I believe there are open source gateways. There must be a WAP mailing list somewhere... regards Mark Lines-Davies -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Panayiotis Periorellis Sent: 26 Februa

Re: broswer versions

2002-02-11 Thread Mark Lines-Davies
10.0 - Original Message - From: "Mark Lines-Davies" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 11, 2002 4:00 AM Subject: Re: broswer versions > And you can also do client-side tests using Javascript. > > There is some interesting testing scr

Re: broswer versions

2002-02-11 Thread Mark Lines-Davies
And you can also do client-side tests using Javascript. There is some interesting testing script in the Javascript clock that was recently posted to this list, and a number of examples on MSDN. regards Mark Lines-Davies -Original Message- From: A mailing list about Java Server Pages

[no subject]

2002-02-05 Thread Mark Lines-Davies
t"); var a = fso.CreateTextFile("c:\\testfile.txt", true); a.WriteLine("This is a test."); a.Close(); The example writes to a file, but reading is easy too. You can read the file into a string and then set it into a DIV element, perhaps, e.g. mydiv.innerText = mystringwit