Hey Guys,

I'm given an application... Reminder Application.   Assumption is
user always has his browser open.

All the application does is:
1. Input the reminder text from the user.
2. Input the reminder date/time from the user.
3. Pop that text to the user in a popup window to the user at that
exact date and time. When the window is popped up, the user has two
options,
a. to close the pop up and
b. to SNOOZE, in which case, the pop up (closes and) pops again
at the interval of 5 minutes.

The environment is ColdFusion 4.5/SQL 7.0/JavaScript.

If I schedule an event using scheduler, thats a lot of system
resource as i have to check every minute.

How do I do it effectively?

Thanks and REgards.

-Thilak



_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp.
--- Begin Message ---

You can return false in the onclick event of that checkbox.

<cfinput type="Checkbox" name="test" checked="Yes" >

-Balaji

From: Andrea Loubier <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Checkbox
Date: Wed, 06 Feb 2002 11:29:21 -0600
if for marketing reasons you NEED the checkbox to appear, try making an
image of the checkbox and put that where the checkbox would normally
appear, it still looks like a formfield, but it's just an image so they
can't touch it.
the following also works in text fields, you can try it in a checkbox
DISABLED
Setting the DISABLED flag for a form element, disables it from receiving
any user input, or focus. It can still display values, text etc., but the
user will not be able to make any changes to those values. For example, the
following text box () has its DISABLED attribute set:
At 11:12 AM 2/6/2002 -0600, you wrote:
>Don't offer the checkbox. If the form field is not there, users
>can't
>change it. If you still need to pass the form field, use a HIDDEN
>form
>field type:
>
>
>
>
>
>
> >>> [EMAIL PROTECTED] 2/6/02 7:18:28 AM >>>
>
>Hi,
>
>How can I stop a user from "unchecking" the box below?
>
>
>
>
>-------------------------------------------------------------------------
>This email server is running an evaluation copy of the MailShield
>anti-
>spam software. Please contact your email administrator if you have
>any
>questions about this message. MailShield product info:
>www.mailshield.com
>
>-----------------------------------------------
>To post, send email to [EMAIL PROTECTED]
>To subscribe / unsubscribe:
>http://www.dfwcfug.org
-------------------------------------------------------------------------
This email server is running an evaluation copy of the MailShield anti-
spam software. Please contact your email administrator if you have any
questions about this message. MailShield product info: www.mailshield.com
-----------------------------------------------
To post, send email to [EMAIL PROTECTED]
To subscribe / unsubscribe: http://www.dfwcfug.org


MSN Photos is the easiest way to share and print your photos: Click Here
------------------------------------------------------------------------- This email server is running an evaluation copy of the MailShield anti- spam software. Please contact your email administrator if you have any questions about this message. MailShield product info: www.mailshield.com --- End Message ---

Reply via email to