Please reply soon

2001-12-29 Thread JOSHY MON M C
Hi all I want to make a list page(JSP), that shows a list of employees . Employee ID, name, other info etc. - for that I have a servlet ( I use Model -2 ) that can either 1. get a Vector of Employee detail objects from the database. OR 2. Get an HTML string (for Listing), getting

Re: Urgent : Tomcat - IIS configuration

2001-12-29 Thread kalyannasundaram subramanian
Hello, I am using IIS to render webservice alone, the jsp service is taken care of by Tomcat. Kalyan. --- Omar Elprince <[EMAIL PROTECTED]> wrote: > Hello, > I don't get it ... why you made a virtual directory > although you are using > jsp wich is not compatable with IIS or frontpage > extent

Re: Please reply soon

2001-12-29 Thread Yan Zhu
3. maybe return the collection in xml format, then you can use xsl to change the displays anytime you want to. 4. webmacro uses a display template to totally separate the data from html, that might help to. JOSHY MON M C wrote: > Hi all > I want to make a list page(JSP), that shows a list of emp

Re: Please reply soon

2001-12-29 Thread Robert Burdick
Option 3 below is the best one. XML / XSLT is a perfect solution for this kind of thing. At 08:24 AM 12/29/2001 -0600, Yan Zhu wrote: >3. maybe return the collection in xml format, then you can >use xsl to change the displays anytime you want to. >4. webmacro uses a display template to totally s

Re: Disabling Back & Forward Buttons of IE

2001-12-29 Thread Anthony Tagunov
CG> 3) Use a session variable that you set with a code that all pages check CG> to see if they should display themselves. To make the picture complete, I beleive this is best accompanyed by response.setHeader("Expires","-1"); do not know if you need the following: (once I used myself, but n

Java question

2001-12-29 Thread Miao, Franco CAWS:EX
0x0010 >> 4 = ? need to convert hex to binary first or what? thanks. Franco === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTERES

Re: Java question

2001-12-29 Thread Robert Burdick
Yep. The shift is bits, so the 0x0010 must be interpreted as 0001 Thus the result of the right shift operation is 0x0001 At 10:22 PM 12/29/2001 -0800, you wrote: >0x0010 >> 4 = ? > > >need to convert hex to binary first or what? > > >thanks. > >Franco > >=