Re:

2001-06-16 Thread Rod Schmidt
Does this mean you can't default a checkbox to true? If you can, how do you do it? Thanks, Rod Schmidt - Original Message - From: "Ted Husted" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 15, 2001 5:45 PM Subject: Re: > They are actually "cached" in the request. It's

Re: [ANNOUNCEMENT] Struts 1.0 (Final) Released

2001-06-16 Thread Michael Mok
Title: RE: [ANNOUNCEMENT] Struts 1.0 (Final) Released Congratulations to Craig and the team!   Cheers   Michael Mokwww.webappcabaret.com/teatimej  

Web design with taglibs?

2001-06-16 Thread Thomas Corte
Hi, the Struts template taglib obviously addresses the design of a web page at large, e.g. menu/header/content/footer, and does a good job here. However, I'd like to use templates at a smaller scale, e.g. use a template for a small HTML fragment containing an anchor tag with an image which occu

Re: General DATABASE programming question

2001-06-16 Thread Martin Cooper
We use SQL Server, and we use your option (2). As long as you use scrollable cursors, you're not actually retrieving everything, just what you need. You can also use TOP to help limit the query. Some of our queries are against tables with many millions of rows, and the result sets can contain mill

Re[2]: General DATABASE programming question

2001-06-16 Thread Oleg V Alexeev
Hello Mindaugas, Saturday, June 16, 2001, 10:36:45 PM, you wrote: MI> My original goal is to ask the database for a page of information at a time. MI> However, MS SQL server does not let you display your results starting at an MI> offset. MI> In my web app's search method, I load the ResultSet

RE: General DATABASE programming question

2001-06-16 Thread Mindaugas Idzelis
> I know it sounds wasteful, but personally I would think about getting a > page at a time. This is more work on the DBMS as they go to later pages, > but many times they don't go past the first page. Otherwise you will > need to keep the resultset in the session and tie up memory. > > A lot of p

moving/tailoring struts-example app

2001-06-16 Thread joey sark
joey sark <[EMAIL PROTECTED]> wrote: > Newbie question: > > I'm using tomcat 3.2.1 > > my default app is webapps/Root > > i have webapps/struts-example working. > > my understanding is that these are two separate apps each with its own web.xml > etc, and that they cannot access each other's se