Rob's FindingsNotes on the quirks of developing applications for the web.Tomcat Administrator Conflict- September 17, 2004 I recently was working on a J2EE application on Tomcat that contained a sub-folder named &8220;admin&8221;. During most of the development process the application was not being run from the &8220;&8221; root context. When the application was moved to the root context the &8220;admin&8221; sub-folder conflicted with the &8220;admin&8221; context that Tomcat comes with by ...http://www.rolsma.com/wordpress/?p=6 Validating all fields on a form- September 16, 2004 The following Javascript can be used to verify that a value has been entered in all fields on a form. function validate(form) var regex = &x0005C;w+; for(var i = 0; i &60; form.length; i++) var curr_el = form.elementsi; ...http://www.rolsma.com/wordpress/?p=4 |