472,351 Members | 1,637 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,351 software developers and data experts.

YES/NO confirmation + Validation control

Hi,

I want to have confirmation(Yes/No) on a button of the webform in which
there are many validation controls. I want all the validation controls to be
triggered first and then Yes/No confirmation message. By adding just an
confirm attribute for 'onclick' event of the button doesn't work with
validation controls. Is there any short way to go around this.

Thanks
Nedu

Nov 18 '05 #1
6 3606
Nedu,

I created a disable submit javascript that keeps a user from clicking the
submit button a second time.

The part of the script that will interest you is that I'm tying in to the
..Net validation script in order to check that the submit button doesn't get
disabled when the page isn't valid.

I think you could modify it to do what you need.

Here's the script (I've placed a comment line in the "checkSubmit" function
in the script where I think you could add your alert):

<script language="javascript">
<!--
var submitcount=0;

function disableSubmit()
{
if (typeof(Page_ClientValidate)=='function')
{
if (Page_ClientValidate() == true)
{
return checkSubmit();
}
else
{
return true;
}
}
else
{
return checkSubmit();
}
}

function checkSubmit()
{
if (submitcount == 0)
{
submitcount++; return true; //You could add your alert here.
}
else
{
alert('This form has already been submitted.'); return false;
}
}
//-->
</script>

In VB.Net Attach it to your button like so:

SubmitButton.Attributes.Add("onClick", "javascript: return
disableSubmit();")
--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Nedu N" <ne****@hotmail.com> wrote in message
news:uX**************@TK2MSFTNGP12.phx.gbl...
Hi,

I want to have confirmation(Yes/No) on a button of the webform in which
there are many validation controls. I want all the validation controls to be triggered first and then Yes/No confirmation message. By adding just an
confirm attribute for 'onclick' event of the button doesn't work with
validation controls. Is there any short way to go around this.

Thanks
Nedu

Nov 18 '05 #2
Hi Nedu,

Thank you to Justin. I also found a control that may help you. I found it
via the Control Gallery at www.asp.net, under "Form Controls". It's listed
as "Confirmed Buttons". This control takes care of the javascript for you.
The direct link is
http://authors.aspalliance.com/asmit...edbuttons.aspx

You can also learn, in depth, about the interactions of the validation
controls with the button click event at
http://authors.aspalliance.com/kenc/faq6.aspx
My favorite solution from this article is attachEvent.

Thank you, Mike
Microsoft, ASP.NET Support Professional

Microsoft highly recommends to all of our customers that they visit the
http://www.microsoft.com/protect site and perform the three straightforward
steps listed to improve your computer’s security.

This posting is provided "AS IS", with no warranties, and confers no rights.
--------------------
Reply-To: "S. Justin Gengo" <sj*****@aboutfortunate.com>
From: "S. Justin Gengo" <sj*****@aboutfortunate.com>
References: <uX**************@TK2MSFTNGP12.phx.gbl>
Subject: Re: YES/NO confirmation + Validation control
Date: Tue, 25 Nov 2003 11:31:16 -0600
Lines: 88
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <ey**************@TK2MSFTNGP11.phx.gbl>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: 63.238.248.99
Path: cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
..phx.gbl!TK2MSFTNGP11.phx.gbl Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:192675
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Nedu,

I created a disable submit javascript that keeps a user from clicking the
submit button a second time.

The part of the script that will interest you is that I'm tying in to the
.Net validation script in order to check that the submit button doesn't get disabled when the page isn't valid.

I think you could modify it to do what you need.

Here's the script (I've placed a comment line in the "checkSubmit" function in the script where I think you could add your alert):

<script language="javascript">
<!--
var submitcount=0;

function disableSubmit()
{
if (typeof(Page_ClientValidate)=='function')
{
if (Page_ClientValidate() == true)
{
return checkSubmit();
}
else
{
return true;
}
}
else
{
return checkSubmit();
}
}

function checkSubmit()
{
if (submitcount == 0)
{
submitcount++; return true; //You could add your alert here.
}
else
{
alert('This form has already been submitted.'); return false;
}
}
//-->
</script>

In VB.Net Attach it to your button like so:

SubmitButton.Attributes.Add("onClick", "javascript: return
disableSubmit();")
--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Nedu N" <ne****@hotmail.com> wrote in message
news:uX**************@TK2MSFTNGP12.phx.gbl...
Hi,

I want to have confirmation(Yes/No) on a button of the webform in which
there are many validation controls. I want all the validation controls
to be
triggered first and then Yes/No confirmation message. By adding just an
confirm attribute for 'onclick' event of the button doesn't work with
validation controls. Is there any short way to go around this.

Thanks
Nedu



Nov 18 '05 #3
Mike,

That's a great article. It's got me thinking about converting my code (which
I have in a javascript object I drop on a page and then use to hook up
"regular" .Net buttons to my script) into an inherited button control.

The only problem with the sample you pointed Nedu to is that he specifically
said that he wants his confirmation to fire after the validation and the
sample fires it before the validation.

An excerpt from the article:

"...and I also wanted to be sure my click handler fired first."

And Nedu's request:

"I want all the validation controls to be triggered first and then
Yes/No confirmation message"

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
""Mike Moore [MSFT]"" <mi****@online.microsoft.com> wrote in message
news:sf****************@cpmsftngxa07.phx.gbl...
Hi Nedu,

Thank you to Justin. I also found a control that may help you. I found it
via the Control Gallery at www.asp.net, under "Form Controls". It's listed
as "Confirmed Buttons". This control takes care of the javascript for you.
The direct link is
http://authors.aspalliance.com/asmit...edbuttons.aspx

You can also learn, in depth, about the interactions of the validation
controls with the button click event at
http://authors.aspalliance.com/kenc/faq6.aspx
My favorite solution from this article is attachEvent.

Thank you, Mike
Microsoft, ASP.NET Support Professional

Microsoft highly recommends to all of our customers that they visit the
http://www.microsoft.com/protect site and perform the three straightforward steps listed to improve your computer's security.

This posting is provided "AS IS", with no warranties, and confers no rights.

--------------------
Reply-To: "S. Justin Gengo" <sj*****@aboutfortunate.com>
From: "S. Justin Gengo" <sj*****@aboutfortunate.com>
References: <uX**************@TK2MSFTNGP12.phx.gbl>
Subject: Re: YES/NO confirmation + Validation control
Date: Tue, 25 Nov 2003 11:31:16 -0600
Lines: 88
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <ey**************@TK2MSFTNGP11.phx.gbl>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: 63.238.248.99
Path:

cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08 phx.gbl!TK2MSFTNGP11.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:192675 X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Nedu,

I created a disable submit javascript that keeps a user from clicking the submit button a second time.

The part of the script that will interest you is that I'm tying in to the .Net validation script in order to check that the submit button doesn't

get
disabled when the page isn't valid.

I think you could modify it to do what you need.

Here's the script (I've placed a comment line in the "checkSubmit"

function
in the script where I think you could add your alert):

<script language="javascript">
<!--
var submitcount=0;

function disableSubmit()
{
if (typeof(Page_ClientValidate)=='function')
{
if (Page_ClientValidate() == true)
{
return checkSubmit();
}
else
{
return true;
}
}
else
{
return checkSubmit();
}
}

function checkSubmit()
{
if (submitcount == 0)
{
submitcount++; return true; //You could add your alert here.
}
else
{
alert('This form has already been submitted.'); return false;
}
}
//-->
</script>

In VB.Net Attach it to your button like so:

SubmitButton.Attributes.Add("onClick", "javascript: return
disableSubmit();")
--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Nedu N" <ne****@hotmail.com> wrote in message
news:uX**************@TK2MSFTNGP12.phx.gbl...
Hi,

I want to have confirmation(Yes/No) on a button of the webform in which there are many validation controls. I want all the validation controls

to
be
triggered first and then Yes/No confirmation message. By adding just an confirm attribute for 'onclick' event of the button doesn't work with
validation controls. Is there any short way to go around this.

Thanks
Nedu


Nov 18 '05 #4
Thank you Mike..
Sue..i will look into this article...

""Mike Moore [MSFT]"" <mi****@online.microsoft.com> wrote in message
news:sf****************@cpmsftngxa07.phx.gbl...
Hi Nedu,

Thank you to Justin. I also found a control that may help you. I found it
via the Control Gallery at www.asp.net, under "Form Controls". It's listed
as "Confirmed Buttons". This control takes care of the javascript for you.
The direct link is
http://authors.aspalliance.com/asmit...edbuttons.aspx

You can also learn, in depth, about the interactions of the validation
controls with the button click event at
http://authors.aspalliance.com/kenc/faq6.aspx
My favorite solution from this article is attachEvent.

Thank you, Mike
Microsoft, ASP.NET Support Professional

Microsoft highly recommends to all of our customers that they visit the
http://www.microsoft.com/protect site and perform the three straightforward steps listed to improve your computer's security.

This posting is provided "AS IS", with no warranties, and confers no rights.

--------------------
Reply-To: "S. Justin Gengo" <sj*****@aboutfortunate.com>
From: "S. Justin Gengo" <sj*****@aboutfortunate.com>
References: <uX**************@TK2MSFTNGP12.phx.gbl>
Subject: Re: YES/NO confirmation + Validation control
Date: Tue, 25 Nov 2003 11:31:16 -0600
Lines: 88
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <ey**************@TK2MSFTNGP11.phx.gbl>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: 63.238.248.99
Path:

cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08 phx.gbl!TK2MSFTNGP11.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:192675 X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Nedu,

I created a disable submit javascript that keeps a user from clicking the submit button a second time.

The part of the script that will interest you is that I'm tying in to the .Net validation script in order to check that the submit button doesn't

get
disabled when the page isn't valid.

I think you could modify it to do what you need.

Here's the script (I've placed a comment line in the "checkSubmit"

function
in the script where I think you could add your alert):

<script language="javascript">
<!--
var submitcount=0;

function disableSubmit()
{
if (typeof(Page_ClientValidate)=='function')
{
if (Page_ClientValidate() == true)
{
return checkSubmit();
}
else
{
return true;
}
}
else
{
return checkSubmit();
}
}

function checkSubmit()
{
if (submitcount == 0)
{
submitcount++; return true; //You could add your alert here.
}
else
{
alert('This form has already been submitted.'); return false;
}
}
//-->
</script>

In VB.Net Attach it to your button like so:

SubmitButton.Attributes.Add("onClick", "javascript: return
disableSubmit();")
--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Nedu N" <ne****@hotmail.com> wrote in message
news:uX**************@TK2MSFTNGP12.phx.gbl...
Hi,

I want to have confirmation(Yes/No) on a button of the webform in which there are many validation controls. I want all the validation controls

to
be
triggered first and then Yes/No confirmation message. By adding just an confirm attribute for 'onclick' event of the button doesn't work with
validation controls. Is there any short way to go around this.

Thanks
Nedu


Nov 18 '05 #5
Thank you Justin...
It works great...

"S. Justin Gengo" <sj*****@aboutfortunate.com> wrote in message
news:eJ*************@TK2MSFTNGP10.phx.gbl...
Mike,

That's a great article. It's got me thinking about converting my code (which I have in a javascript object I drop on a page and then use to hook up
"regular" .Net buttons to my script) into an inherited button control.

The only problem with the sample you pointed Nedu to is that he specifically said that he wants his confirmation to fire after the validation and the
sample fires it before the validation.

An excerpt from the article:

"...and I also wanted to be sure my click handler fired first."

And Nedu's request:

"I want all the validation controls to be triggered first and then
Yes/No confirmation message"

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
""Mike Moore [MSFT]"" <mi****@online.microsoft.com> wrote in message
news:sf****************@cpmsftngxa07.phx.gbl...
Hi Nedu,

Thank you to Justin. I also found a control that may help you. I found it
via the Control Gallery at www.asp.net, under "Form Controls". It's listed as "Confirmed Buttons". This control takes care of the javascript for you. The direct link is
http://authors.aspalliance.com/asmit...edbuttons.aspx

You can also learn, in depth, about the interactions of the validation
controls with the button click event at
http://authors.aspalliance.com/kenc/faq6.aspx
My favorite solution from this article is attachEvent.

Thank you, Mike
Microsoft, ASP.NET Support Professional

Microsoft highly recommends to all of our customers that they visit the
http://www.microsoft.com/protect site and perform the three

straightforward
steps listed to improve your computer's security.

This posting is provided "AS IS", with no warranties, and confers no

rights.


--------------------
Reply-To: "S. Justin Gengo" <sj*****@aboutfortunate.com>
From: "S. Justin Gengo" <sj*****@aboutfortunate.com>
References: <uX**************@TK2MSFTNGP12.phx.gbl>
Subject: Re: YES/NO confirmation + Validation control
Date: Tue, 25 Nov 2003 11:31:16 -0600
Lines: 88
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <ey**************@TK2MSFTNGP11.phx.gbl>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: 63.238.248.99
Path:

cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
phx.gbl!TK2MSFTNGP11.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:192675 X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Nedu,

I created a disable submit javascript that keeps a user from clicking the submit button a second time.

The part of the script that will interest you is that I'm tying in to the .Net validation script in order to check that the submit button doesn't get
disabled when the page isn't valid.

I think you could modify it to do what you need.

Here's the script (I've placed a comment line in the "checkSubmit"

function
in the script where I think you could add your alert):

<script language="javascript">
<!--
var submitcount=0;

function disableSubmit()
{
if (typeof(Page_ClientValidate)=='function')
{
if (Page_ClientValidate() == true)
{
return checkSubmit();
}
else
{
return true;
}
}
else
{
return checkSubmit();
}
}

function checkSubmit()
{
if (submitcount == 0)
{
submitcount++; return true; //You could add your alert here.
}
else
{
alert('This form has already been submitted.'); return false;
}
}
//-->
</script>

In VB.Net Attach it to your button like so:

SubmitButton.Attributes.Add("onClick", "javascript: return
disableSubmit();")
--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Nedu N" <ne****@hotmail.com> wrote in message
news:uX**************@TK2MSFTNGP12.phx.gbl...
> Hi,
>
> I want to have confirmation(Yes/No) on a button of the webform in which > there are many validation controls. I want all the validation
controls
to
be
> triggered first and then Yes/No confirmation message. By adding just

an > confirm attribute for 'onclick' event of the button doesn't work

with > validation controls. Is there any short way to go around this.
>
> Thanks
> Nedu
>
>
>


Nov 18 '05 #6
Nedu,

Great! I think I'll have to add a version like this to my javascript
component.

Until your request I never thought of combining the two pieces of code [a
javascript confirmation and disable submit], but it makes perfect sense.

Thanks for the idea!

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Nedu N" <ne****@hotmail.com> wrote in message
news:eQ*************@TK2MSFTNGP10.phx.gbl...
Thank you Justin...
It works great...

"S. Justin Gengo" <sj*****@aboutfortunate.com> wrote in message
news:eJ*************@TK2MSFTNGP10.phx.gbl...
Mike,

That's a great article. It's got me thinking about converting my code

(which
I have in a javascript object I drop on a page and then use to hook up
"regular" .Net buttons to my script) into an inherited button control.

The only problem with the sample you pointed Nedu to is that he

specifically
said that he wants his confirmation to fire after the validation and the
sample fires it before the validation.

An excerpt from the article:

"...and I also wanted to be sure my click handler fired first."

And Nedu's request:

"I want all the validation controls to be triggered first and then
Yes/No confirmation message"

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
""Mike Moore [MSFT]"" <mi****@online.microsoft.com> wrote in message
news:sf****************@cpmsftngxa07.phx.gbl...
Hi Nedu,

Thank you to Justin. I also found a control that may help you. I found it via the Control Gallery at www.asp.net, under "Form Controls". It's listed as "Confirmed Buttons". This control takes care of the javascript for you. The direct link is
http://authors.aspalliance.com/asmit...edbuttons.aspx

You can also learn, in depth, about the interactions of the validation
controls with the button click event at
http://authors.aspalliance.com/kenc/faq6.aspx
My favorite solution from this article is attachEvent.

Thank you, Mike
Microsoft, ASP.NET Support Professional

Microsoft highly recommends to all of our customers that they visit the http://www.microsoft.com/protect site and perform the three

straightforward
steps listed to improve your computer's security.

This posting is provided "AS IS", with no warranties, and confers no

rights.


--------------------
> Reply-To: "S. Justin Gengo" <sj*****@aboutfortunate.com>
> From: "S. Justin Gengo" <sj*****@aboutfortunate.com>
> References: <uX**************@TK2MSFTNGP12.phx.gbl>
> Subject: Re: YES/NO confirmation + Validation control
> Date: Tue, 25 Nov 2003 11:31:16 -0600
> Lines: 88
> X-Priority: 3
> X-MSMail-Priority: Normal
> X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
> X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
> Message-ID: <ey**************@TK2MSFTNGP11.phx.gbl>
> Newsgroups: microsoft.public.dotnet.framework.aspnet
> NNTP-Posting-Host: 63.238.248.99
> Path:

cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
phx.gbl!TK2MSFTNGP11.phx.gbl
> Xref: cpmsftngxa07.phx.gbl

microsoft.public.dotnet.framework.aspnet:192675
> X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
>
> Nedu,
>
> I created a disable submit javascript that keeps a user from
clicking
the
> submit button a second time.
>
> The part of the script that will interest you is that I'm tying in
to the
> .Net validation script in order to check that the submit button doesn't get
> disabled when the page isn't valid.
>
> I think you could modify it to do what you need.
>
> Here's the script (I've placed a comment line in the "checkSubmit"
function
> in the script where I think you could add your alert):
>
> <script language="javascript">
> <!--
> var submitcount=0;
>
> function disableSubmit()
> {
> if (typeof(Page_ClientValidate)=='function')
> {
> if (Page_ClientValidate() == true)
> {
> return checkSubmit();
> }
> else
> {
> return true;
> }
> }
> else
> {
> return checkSubmit();
> }
> }
>
> function checkSubmit()
> {
> if (submitcount == 0)
> {
> submitcount++; return true; //You could add your alert here.
> }
> else
> {
> alert('This form has already been submitted.'); return false;
> }
> }
> //-->
> </script>
>
> In VB.Net Attach it to your button like so:
>
> SubmitButton.Attributes.Add("onClick", "javascript: return
> disableSubmit();")
>
>
> --
> Sincerely,
>
> S. Justin Gengo, MCP
> Web Developer / Programmer
>
> Free code library at:
> www.aboutfortunate.com
>
> "Out of chaos comes order."
> Nietzche
>
>
> "Nedu N" <ne****@hotmail.com> wrote in message
> news:uX**************@TK2MSFTNGP12.phx.gbl...
> > Hi,
> >
> > I want to have confirmation(Yes/No) on a button of the webform in

which
> > there are many validation controls. I want all the validation controls to
> be
> > triggered first and then Yes/No confirmation message. By adding
just an
> > confirm attribute for 'onclick' event of the button doesn't work

with > > validation controls. Is there any short way to go around this.
> >
> > Thanks
> > Nedu
> >
> >
> >
>
>
>



Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Tim Meagher | last post by:
I am trying to use both validation controls and to add submit button attributes, but when I add the button attributes, the javascript fpr the...
14
by: Matt | last post by:
I want to know if ASP.NET Web Forms Validation Controls are Server-Side or Client-Side form validation? Since I think each validator control can...
3
by: vcornjamb | last post by:
Hello, I am developing a web form that contains some buttons and a data grid which has as its last column link buttons that will delete the data...
4
by: DrData | last post by:
I'm working on an ASP.Net application written in C#. On one page, there are several datagrid controls used to display, edit and delete detail...
2
by: Tim Frawley | last post by:
Source code attached indicates my problem with validation and a button bar save button. Fill the Textbox with some text then tab off the control....
2
by: steggun | last post by:
How To: Popup Confirmation Dialog & Redirect in LinkButton_OnClick Hello All, I have a ASP.NET 2.0 (C#) web form with a LinkButton control. In...
2
by: bienwell | last post by:
Hi all, I still have a problem when using Confirmation box in ASP.NET program. I need to get the value return of YES or NO from confirmation box...
2
by: simon_eyer | last post by:
Hi, I use a datagrid with a delete command. I create a validation on the delete command and i have a problem: the confirmation message is supposes...
2
by: bay_dar | last post by:
Hi, I have an internal ASP.NET application that I'm are using to send e-mails out based on a single milepost or milepost range entered. I'm...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
1
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.