Re: Cursor Control in JavaScript

2002-09-24 Thread Sami Saul
This is a JSP Forum... Try this. document.all.OBJECT.style.cursor = "wait"; Works for IE. Sami Saul >How can I set the cursor to a particular position using JavaScript?? >Anyone having a clue? >With Best Rega

Re: Restarting Tomcat

2002-03-20 Thread Sami Saul
What did you config Tomcat to run as a service? Regards, Sami > Thanks, all. Yes, Tomcat was running as a service, and yes, all I had > to do was to restart the service from the control panel. I thought I > should have done ASP for long enough to know that, but never mind. =

Re: Check boxes

2002-03-12 Thread Sami Saul
x27;re running an e-commerce site, 1,000 Netscape users suddenly become > an important reason to make a site NS compliant. > > ;-) > > -Original Message- > From: Sami Saul [mailto:[EMAIL PROTECTED]] > Sent: 12 March 2002 16:01 > To: [EMAIL PROTECTED] > Subject: Re

Re: Check boxes

2002-03-12 Thread Sami Saul
Do you know any other browser than IE? :-) - Original Message - From: "Philip Steel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 12, 2002 17:40 Subject: Re: Check boxes > except it's not cross-browser > > :-( > > --

Re: Check boxes

2002-03-12 Thread Sami Saul
Correction: if (type == "checkbox" && id=="" && checked) - Original Message - From: "Sami Saul" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 12, 2002 17:26 Subject: Re: Check boxes > This way (arra

Re: Check boxes

2002-03-12 Thread Sami Saul
This way (array) can be very slow if you have a lot of "checkboxes" (I have a page with 1000). Try something like this: var cbs = document.all.tags("INPUT"); for (var i=0; i To: <[EMAIL PROTECTED]> Sent: Tuesday, March 12, 2002 17:05 Subject: Re: Check boxes > you need to put it in a javascrip

Re: Removing cookie!

2002-02-25 Thread Sami Saul
cookie.setMaxAge(-1); // cookie is deleted when the browser is closed. response.addCookie(cookie); - Original Message - From: "It, Cockpit (CAP, Contractor)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 25, 2002 10:48 Subject: Removing cookie! > Dear Friends, > I

Re: JSP development

2002-01-24 Thread Sami Saul
Intellij Idea it's not free, but it's great! www.intellij.com Abracos/Regards, Sami Saul > Hi all, > I know this question has been answered before, but can you tell me > (again) some good software (preferably freeware) for developing JSP/Servlet > page

Re: taking NT Authentication for JSP App.

2002-01-04 Thread Sami Saul
This will be very useful for me too. Please forward me any solution. Regards, Sami Saul [EMAIL PROTECTED] - Original Message - From: "Dasti, Hassan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 04, 2002 21:55 Subject: taking NT Authenticati

Re: search and replace for single quotes

2001-12-17 Thread Sami Saul
I've had the same problem. Use PreparedStatement. It takes care of the quote problem. Regards, Sami > I have a jsp file with a html form in it. Once the > form is completed and submitted: the file is sent back > to the same jsp file, a sql statement is made from the > information entered in

Re: browswer check

2001-12-17 Thread Sami Saul
Try request.getHeader("User-Agent")   Regards,   Sami   Can anybody direct me to some code that will check browser version and type via jsp or tag?  I don't particularly want to use javascript.  

TomCat as service

2001-12-12 Thread Sami Saul
Hello All, I'm sorry if it's off-topic, but anyone knows how to run TomCat as a service in win2000? Regards, Sami === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL P

Re: newbie wanting to pass data from servlet to jsp

2001-12-11 Thread Sami Saul
No difference. regards, Sami > Is there any difference between using > <%@ page import="java.util.*,java.sql.ResultSet" %> > > and > <%@ page import="java.util.*"%> > <%@page import="java.sql.ResultSet" %> > > Which one is preffered and why? ==

Re: Can Tomcat use a default file?

2001-11-26 Thread Sami Saul
It doesn't work, Chen. Can you explain me in which file and session I should include the "welcome-file-list"? regards, Sami > Just use a welcome file. Do these in your applications WEB-INF file. > If you want to do: > http://server:8080/name then do: > > Default.jsp > =

Can Tomcat use a default file?

2001-11-26 Thread Sami Saul
Hi everyone! The link for my application is http://server:8080/name/Default.jsp Is there any way to configure Tomcat to work with a default file? I'd like to use http://server:8080/name or even better http://server:8080 Please don't answer "Look for it in Google". It's not elegant, and beli

Re: generation of textbox thro' java script

2001-11-04 Thread Sami Saul
You can use the JavaScript method "appendChild". See more on: http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/appendChil d.asp The example in the page is: var oDiv=document.createElement("DIV"); document.body.appendChild(oDiv); Best regards, Sami > Hi, > I have a small pro

Re: STOP-JSP

2001-10-23 Thread Sami Saul
try this: response.flushBuffer(); return; regards, Sami - Original Message - From: "Michi Reutter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 23, 2001 12:02 Subject: STOP-JSP > how to stop e jsp? > > I do a HTTP-redirect some times - and want to end the