Re: JSTL

2002-08-09 Thread Juha Halmu
Try these examples... after those, I understod taglibraries much better... (no right-click-stuff ;)) http://coldjava.hypermart.net/jsp.htm Terveisin, x--- Juha Halmu ---y http://portal.halmu.net This e-mail may

Re: Suggestion for JSP book

2002-08-09 Thread Robert S. Sfeir
None of those. I went through a lot of books looking for the right information. Only one fit the bill and I HIGHLY recommend it: Advanced JavaServer Pages - David M. Geary - www.phptr.com This book covers everything about JSP but more importantly it covers the right things like: Model 1 and

Re: Suggestion for JSP book

2002-08-09 Thread Graeme McLaren
I've got Web Development with JavaServer Pages by Fields Kolb and Bayern from Manning publications lots of neat stuff in there !! Good Luck G :) Public Sub House() On Error Resume drink If Pint.empty = True Then Pint.refill Else

Re: Suggestion for JSP book

2002-08-09 Thread Ivey, Brian
I strongly agree with this recommendation. I am reading this book right now. A new edition is coming out in about a week. You may want to wait for it. -Original Message- From: Paul Foxton [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2002 4:48 AM To: [EMAIL PROTECTED] Subject: Re:

Re: Suggestion for JSP book

2002-08-09 Thread Robert S. Sfeir
Hopefuly Hans will read this: Does the new edition cover MVC Extensively? I find it hard to find enough info on that framework... or I should say there could not be enough information on the framework. It seems there are so many different approaches to it, and every author has their own way of

Re: Suggestion for JSP book

2002-08-09 Thread Tony LaPaso
Well, I would say the worst computer books, generally speaking, are the Wrox books. In the past they have been so full of errors that I don't even bother to open them anymore. When I see that big red cover with the faces, I ignore it. The very best book I've found is the Manning book: Web

Re: How to Hide the source code (html source) created in runtime

2002-08-09 Thread Mike Appleby
Hi I second the question as to why anyone would want to hide html code? As for javascript, the same applies, but I'm not wanting to teach my Grandmother how to such eggs, but by simply writing all javascript in a .js file, sticking it in a folder on your site and linking to it using: SCRIPT

Re: How to keep two sessions with the same browser?

2002-08-09 Thread Roland Dong
Thanks for all your inputs! Ok, is it possible to check if there is a previous session, so that before the second user actually logs in, he would get a warning that a session already exists? Thanks a lot === To unsubscribe:

Re: How to keep two sessions with the same browser?

2002-08-09 Thread Bhiogade, Mittal S (SUPP)
see u will having some USerProfile Object in the session if that object is in the session (check for NOT NULL condition) then u can give some user friendly message. Regards, Mittal S.Bhiogade GE-Supply -Original Message- From: Roland Dong [mailto:[EMAIL PROTECTED]] Sent: Friday,

Re: How to keep two sessions with the same browser?

2002-08-09 Thread Juha Halmu
isThreadSafe Attribute ?? Terveisin, x--- Juha Halmu ---y http://portal.halmu.net This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this

Re: Suggestion for JSP book

2002-08-09 Thread Tariq Ahmed
Well I just finished the Beginning JSP Web Dev by Wrox, it was ok. They briefly whip through a lot of the features, and the writing style is casual so its not like reading a boring technical manual. Wrox recommends the learning path of 1) Beginning JSP Web Dev 2) Prof Java Server Programming

Re: Suggestion for JSP book

2002-08-09 Thread Hans Bergsten
Robert S. Sfeir wrote: Hopefuly Hans will read this: Does the new edition cover MVC Extensively? I find it hard to find enough info on that framework... or I should say there could not be enough information on the framework. It seems there are so many different approaches to it, and every

IDE Comparing JSP

2002-08-09 Thread techhead4life
Is there an IDE or similar product that lets you compare 2 jsp documents to see what coding changes are made, similar feature in some cvs systems~ === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.

Re: Suggestion for JSP book

2002-08-09 Thread Oscar González Herrera
I suggested, Core Servlets and JavaserverPages by Marty Hall you can see in: http://www.coreservlets.com Complete searchable PDF version offered exclusively through the Java Lobby: http://www.javalobby.org - Original Message - From: Ganesh Kamath D (RBIN/DBA-JOT) * [EMAIL

Re: Suggestion for JSP book

2002-08-09 Thread Tariq Ahmed
The information is generally ok but their proof-reading isn't up to much, I've bought a few wrox books and they're always littered with errors. I'm sure others would disagree but thats my experience. Actually I can definitely concur on that. The Wrox Beginning JSP book I have has a number of

Re: Suggestion for JSP book

2002-08-09 Thread Robert S. Sfeir
I think all books have errors. In advanced JavaServer Pages I stepped on a couple of pieces of code where the author was not catching (or throwing) the proper exception, or didn't do it at all, so it ends up that when you're writing the code out for testing on your machine that the class won't

Re: JSTL

2002-08-09 Thread Tiago Nodari
Hans, Thanks for your feedback, last night after I asked the question, I started to imagine that the objects were when the application started. I was going to look today. My problem is finding out what the possible atributes are, for example the Jakarta Taglibs have a simple

Re: JSTL

2002-08-09 Thread Hans Bergsten
Tiago Nodari wrote: Hans, Thanks for your feedback, last night after I asked the question, I started to imagine that the objects were when the application started. I was going to look today. My problem is finding out what the possible atributes are, for example the Jakarta

Re: Suggestion for JSP book

2002-08-09 Thread Tiago Nodari
I suggest either Hans Book (http://thejspbook.com), or Web Development with JavaServer Pages By Duane K. Fields, Mark A. Kolb, and Shawn Bayern from Manning. I really liked both books, the web Dev. book I used a lot, since it has some nice examples, like how to make a faq tool and not

Re: Suggestion for JSP book

2002-08-09 Thread Martin Gainty
Which Book are you speaking of???thanks,Martin Gainty The information is generally ok but their proof-reading isn't up to much, I've bought a few wrox books and they're always littered with errors. I'm sure others would disagree but thats my experience. Actually I can definitely concur on

Re: IDE Comparing JSP

2002-08-09 Thread Bhangale, Bhushan
It must be in the CVS system as it is a version maintenance s/w. Atleast Visual source safe have this comparison for any file. -Original Message- From: techhead4life [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2002 2:26 PM To: [EMAIL PROTECTED] Subject: IDE Comparing JSP Is

How to create a session object other than session

2002-08-09 Thread Roland Dong
I am testing a session object so I created p1.jsp with the snippets: % HttpSession currSession = request.getSession(true) currSession.setMaxInactiveInterval(3600); currSession.setAttribute(user, Name); currSession.setAttribute(id, ID); ... % In P2.jsp % .

Re: How to create a session object other than session

2002-08-09 Thread Bhangale, Bhushan
You are doing a very minor mistake. You have defined the currSession variable in p1.jsp and using it in p2.jsp. Obviously it will give variable not defined error since its not defined in p2.jsp. Remember p1.jsp and p2.jsp are two different files. Whereas the session variable is a implicit object

Re: Suggestion for JSP book

2002-08-09 Thread Jayson Falkner
Hello, The wrox books are filled with information, but I have yet to see one that completes the information they're trying to convey. I agree with this. I've helped with a number of Wrox books and this is usually the case. It always seems to be due to the *very* quick development cycle and

Interbase6.0-win32 with resin, No suitable Driver error.

2002-08-09 Thread Jeans King
Hi all, when i try to connect Interbase's database through jsp Classfor, the console give out: Classnotfounderror,interbase.interclient.driver the sample code like this: try { Connection conn=DriverManager.getConnection(jdbc:interbase://localhost/d:/Study/Java/data/bookshop.gdb);