Do not use on any
shared computer
July 25, 2008 05:40pm pdt
null
[x]
Attachment Details

Disable submit button after click (Interdev DesignerControl Button)... why isn't this easy?

Tags: button, disable, submit, click, after
I have been blessed to be given a huge legacy of web code written in Visual InterDev 6.0. We are having a problem with duplicate orders being submitted when users click submit multiple times. I assumed this would be an easy fix... just disable the button on the first click, right?

Well, I couldn't figure it out. So we assigned it to the previously-senior-but-now-parttime-programmer who wrote most of the stuff in the first place and SHE couldn't figure it out.

I searched the web fruitlessly. The question is too specific, or too vague, or something, to be susceptible to easy search terms. (Suggestions welcome!)

My company understandably doesn't want me to spend days on such a simple problem, coming up to speed on all the ins and outs of interdev controls and writing/rewriting ASPs just to fix what should be a simple problem. I would really appreciate anyone's help.

The pages are VB .ASP and the submit button is some special Microsoft control and looks like this in the source page (not visible from inside interdev, but what is written out to the actual .asp file):

<!--METADATA TYPE="DesignerControl" startspan
<OBJECT
    classid="clsid:B6FC3A14-F837-11D0-9CC8-006008058731"
    height=27 id=btnSubmit
    style="HEIGHT: 27px; LEFT: 0px; TOP: 0px; WIDTH: 206px"
    width=206>
    <PARAM NAME="_ExtentX" VALUE="5450">
    <PARAM NAME="_ExtentY" VALUE="714">
    <PARAM NAME="id" VALUE="btnSubmit">
    <PARAM NAME="Caption" VALUE="">
    <PARAM NAME="Image" VALUE="images/ButtonSubmit.gif">
    <PARAM NAME="AltText" VALUE="Submit this new order.">
    <PARAM NAME="Visible" VALUE="-1">
    <PARAM NAME="Platform" VALUE="0">
    <PARAM NAME="LocalPath" VALUE="">
</OBJECT>
-->
<!--#INCLUDE FILE="_ScriptLibrary/Button.ASP"-->
<SCRIPT LANGUAGE=JavaScript RUNAT=Server>
function _initbtnSubmit()
{
    btnSubmit.src = 'images/ButtonSubmit.gif';
    btnSubmit.alt = 'Submit this new order.';
    btnSubmit.setStyle(1);
}
function _btnSubmit_ctor()
{
    CreateButton('btnSubmit', _initbtnSubmit, null);
}
</script>
<% btnSubmit.display %>

<!--METADATA TYPE="DesignerControl" endspan-->

The event handler looks like this:

[<SCRIPT ID=serverEventHandlersVBS LANGUAGE=vbscript RUNAT=Server>
    Sub btnSubmit_onclick()
{Code to submit order here}
    End Sub
</SCRIPT>

When visiting the page, the client source shows the control rendered thus:

<A href="javascript:thisPage._fireEvent('btnSubmit','onclick');"><IMAGE border=0 name="btnSubmit" id="btnSubmit" src="images/ButtonSubmit.gif" alt="Submit this order.">

The easiest way to fix this, I thought, would be to disable the submit button. But, I don't have access to the inner javascript of the control when it is displayed or I'd just disable it from the client side:

"javascript:{control.visible=false or something!};thisPage._fireEvent('btnSubmit','onclick');"

So then I tried putting server-side code at the top of the btnSubmit_onclick event to disable or make the button invisible.

document.getElementById("lblresubmit").style.visibility = "visible"

Didn't work. I realized it probably had to be a client action. So I tried

Response.Write "<SCRIPT language=vbscript>document.getElementById('lblresubmit').style.visibility = 'invisible'</SCRIPT>"

(Well... I don't know if the syntax above is correct, but I did do it right when I was trying it.)

Which 'works' but the problem is that when you click the submit button, it refreshes the page (but doesn't navigate to a new one, yet, until the server response is received), and the response.write output ends up being first in the source, before <HTML>, when there IS no control yet.

I can think of several methods to prevent actual submission of the second and subsequent orders, but the best thing would be to disable the button (while it waits for a response from the server which loads a new page).

Ready to tear my hair out,

-E²

P.S. Thank you very much for your time!!!
Start your free trial to view this solution
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

Question Stats
Zone: Web Development
Question Asked By: E-Squared
Solution Provided By: modulo
Participating Experts: 3
Solution Grade: A
Views: 75
Translate:
Loading Advertisement...
 
[+][-]Expert Comment by zastil
Expert Comment by zastil:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Author Comment by E-Squared
Author Comment by E-Squared:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Expert Comment by ftaco96
Expert Comment by ftaco96:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Author Comment by E-Squared
Author Comment by E-Squared:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Administrative Comment by Venabili
Administrative Comment by Venabili:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Author Comment by E-Squared
Author Comment by E-Squared:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Author Comment by E-Squared
Author Comment by E-Squared:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Accepted Solution by modulo
Accepted Solution by modulo:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080723-EE-VQP-34