asptoday_discuss thread: confirmation window
Message #1 by "Tan Chye Ting" <chyeting18@h...> on Sun, 3 Feb 2002 14:18:24
|
|
can anyone tell how to create a window for user to confirm...for example...
in the window
are you sure you want to delete this?then there is a OK and CANCEL
button..if i click on the OK button then i carry on my task if click on
CANCEL then abort the task..how do i do it?thanx
Message #2 by "Vani" <vani@a...> on Mon, 4 Feb 2002 07:16:08 +0300
|
|
function Confirm()
{
if(confirm("Are you sure you want to delete this ") =3D=3D true)
return true;
else
return false;
}
Call the above function as
eg., onClick=3D"return Confirm()"
-vani.
-----Original Message-----
From: Tan Chye Ting [mailto:chyeting18@h...]
Sent: Sunday, February 03, 2002 5:18 PM
To: ASPToday Discuss
Subject: [asptoday_discuss] confirmation window
can anyone tell how to create a window for user to confirm...for
example...
in the window
are you sure you want to delete this?then there is a OK and CANCEL
button..if i click on the OK button then i carry on my task if click on
CANCEL then abort the task..how do i do it?thanx
Message #3 by "ASIM ABBASI" <asim_electro@h...> on Mon, 4 Feb 2002 10:37:23 -0500
|
|
Hi,
I have used MS Chart with ASP. Some of our clients are complaining that they
can't see the chart. What do I write in code base to let the ActiveX install
in their machines.
Regards
Asim
Message #4 by "Dmitry Brook" <brook74@h...> on Mon, 04 Feb 2002 15:53:03 +0000
|
|
object tag with CLSID attribute or declare it as ActiveX object. Also
security settings of their IE matter.
>From: "ASIM ABBASI" <asim_electro@h...>
>Reply-To: "ASPToday Discuss" <asptoday_discuss@p...>
>To: "ASPToday Discuss" <asptoday_discuss@p...>
>Subject: [asptoday_discuss] RE: confirmation window
>Date: Mon, 4 Feb 2002 10:37:23 -0500
>
>Hi,
>
>I have used MS Chart with ASP. Some of our clients are complaining that
>they
>can't see the chart. What do I write in code base to let the ActiveX
>install
>in their machines.
>
>Regards
>Asim
>
_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com
Message #5 by Le Duc Hanh <leduchanh2000@y...> on Mon, 4 Feb 2002 17:36:42 -0800 (PST)
|
|
I think you should use MS Chart to generate a .gif
image and show that image to your client.
--- Dmitry Brook <brook74@h...> wrote:
> object tag with CLSID attribute or declare it as
> ActiveX object. Also
> security settings of their IE matter.
>
>
>
> >From: "ASIM ABBASI" <asim_electro@h...>
> >Reply-To: "ASPToday Discuss"
> <asptoday_discuss@p...>
> >To: "ASPToday Discuss"
> <asptoday_discuss@p...>
> >Subject: [asptoday_discuss] RE: confirmation window
> >Date: Mon, 4 Feb 2002 10:37:23 -0500
> >
> >Hi,
> >
> >I have used MS Chart with ASP. Some of our clients
> are complaining that
> >they
> >can't see the chart. What do I write in code base
> to let the ActiveX
> >install
> >in their machines.
> >
> >Regards
> >Asim
> >
>
>
>
_________________________________________________________________
> Send and receive Hotmail on your mobile device:
> http://mobile.msn.com
>
>
__________________________________________________
Do You Yahoo!?
Great stuff seeking new owners in Yahoo! Auctions!
http://auctions.yahoo.com
|