Click here to Skip to main content
15,889,216 members

Dominic Burford - Professional Profile



Summary

Follow on Twitter LinkedIn      Blog RSS
6,554
Author
2,053
Authority
9,852
Debator
8
Editor
100
Enquirer
212
Organiser
2,954
Participant
I am a professional software engineer and technical architect with over twenty years commercial development experience with a strong focus on the design and development of web and mobile applications.

I have experience of architecting scalable, distributed, high volume web applications that are accessible from multiple devices due to their responsive web design, including architecting enterprise service-oriented solutions. I have also developed enterprise mobile applications using Xamarin and Telerik Platform.

I have extensive experience using .NET, ASP.NET, Windows and Web Services, WCF, SQL Server, LINQ and other Microsoft technologies. I am also familiar with HTML, Bootstrap, Javascript (inc. JQuery and Node.js), CSS, XML, JSON, Apache Cordova, KendoUI and many other web and mobile related technologies.

I am enthusiastic about Continuous Integration, Continuous Delivery and Application Life-cycle Management having configured such environments using CruiseControl.NET, TeamCity and Team Foundation Services. I enjoy working in Agile and Test Driven Development (TDD) environments.

Outside of work I have two beautiful daughters. I am also an avid cyclist who enjoys reading, listening to music and travelling.

 

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralRe: Stackoverflow Developer Survey Results 2016 Pin
Slacker00718-Mar-16 0:14
professionalSlacker00718-Mar-16 0:14 
GeneralRe: Stackoverflow Developer Survey Results 2016 Pin
Dominic Burford18-Mar-16 6:15
professionalDominic Burford18-Mar-16 6:15 
GeneralGetting creative and staying in the zone Pin
Dominic Burford16-Mar-16 1:56
professionalDominic Burford16-Mar-16 1:56 
GeneralLet's stop talking about quality Pin
Dominic Burford25-Feb-16 21:02
professionalDominic Burford25-Feb-16 21:02 
GeneralWhat makes a good programming language? Pin
Dominic Burford3-Feb-16 1:53
professionalDominic Burford3-Feb-16 1:53 
GeneralRe: What makes a good programming language? Pin
Slacker0073-Feb-16 2:07
professionalSlacker0073-Feb-16 2:07 
GeneralRe: What makes a good programming language? Pin
Dominic Burford3-Feb-16 20:52
professionalDominic Burford3-Feb-16 20:52 
GeneralPreventing a button from being clicked multiple times Pin
Dominic Burford26-Jan-16 21:26
professionalDominic Burford26-Jan-16 21:26 
I was recently tasked with the problem of preventing users from clicking a button multiple times. This was on a login form whereby if the form was taking longer than normal, the user would click again....and again repeatedly. Whilst there was no impact on the product as such and no exception was thrown, it did register the fact the same user was logged in multiple times within the product.

There are times however when a user clicking repeatedly on a button can have far more adverse affects, such as posting a transaction or an update more than once, leading to inconsistent data.

There are several ways of solving this problem, but this one seems the most straight forward and simple to implement.

Firstly, you will need to add a fake button to your page. This fake button is what the user will see on the page. The original button will be hidden. The user clicks on the fake button. The text on the fake button is changed to indicate that the button has responded, and the button is immediately disabled.

To achieve this behaviour firstly add a fake button to your form as in the following example.
ASP.NET
<%--original button--%>
<asp:Button ID="login" runat="server" OnClick="Go" /> 
<%--add your fake button--%>
<input type="button" id="visibleLoginButton" value="Login" onclick="DisableButton(this)">

Now you need to add some Javascript to the page that will update the text on your fake button, disable it (so it won't get clicked repeatedly) and invoke the click event of your original button.
<script type="text/javascript">
        function DisableButton(b) {
            b.disabled = true;
            b.value = 'Submitting';
            b.onclick = document.getElementById('login').click();
        }
</script>

Finally you need to hide your original button. Most people would naturally set visibility to false, but this won't work. The reason is that the form will only post back elements that are on the form. An element that has visibility set to false wil not get posted because it is not contained on the form. The trick is to set the display to none. This should be done in your form's Page_Init() event.
C#
this.login.Attributes.Add("style", "display: none;");

And that's all there is to it. Happy coding.
"There are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult." - C.A.R. Hoare

Home | LinkedIn | Google+ | Twitter

GeneralProgramming Trends To Look For This Year Pin
Dominic Burford13-Jan-16 19:03
professionalDominic Burford13-Jan-16 19:03 
GeneralWhat is "Clean Code"? Pin
Dominic Burford23-Dec-15 5:05
professionalDominic Burford23-Dec-15 5:05 
GeneralCoding without a safety net Pin
Dominic Burford15-Dec-15 18:48
professionalDominic Burford15-Dec-15 18:48 
GeneralFocussing controls with ASP.NET Pin
Dominic Burford10-Dec-15 21:07
professionalDominic Burford10-Dec-15 21:07 
GeneralOne Googler's War on Javascript Frameworks Pin
Dominic Burford26-Nov-15 19:24
professionalDominic Burford26-Nov-15 19:24 
GeneralThe Programmer's Oath (extended version) Pin
Dominic Burford19-Nov-15 19:01
professionalDominic Burford19-Nov-15 19:01 
GeneralBalancing general IT knowledge vs. technical expertise Pin
Dominic Burford19-Nov-15 1:08
professionalDominic Burford19-Nov-15 1:08 
GeneralRe: Balancing general IT knowledge vs. technical expertise Pin
Slacker00719-Nov-15 1:29
professionalSlacker00719-Nov-15 1:29 
GeneralRe: Balancing general IT knowledge vs. technical expertise Pin
Dominic Burford19-Nov-15 2:29
professionalDominic Burford19-Nov-15 2:29 
GeneralTime for Linus Torvalds to change how he treats people Pin
Dominic Burford14-Nov-15 21:05
professionalDominic Burford14-Nov-15 21:05 
GeneralRe: Time for Linus Torvalds to change how he treats people Pin
Slacker00715-Nov-15 1:47
professionalSlacker00715-Nov-15 1:47 
GeneralProgrammers and engineers Pin
Dominic Burford5-Nov-15 21:04
professionalDominic Burford5-Nov-15 21:04 
GeneralRule of Modularity Pin
Dominic Burford26-Oct-15 21:46
professionalDominic Burford26-Oct-15 21:46 
GeneralDomain Driven Design Quickly Pin
Dominic Burford21-Oct-15 18:37
professionalDominic Burford21-Oct-15 18:37 
GeneralRe: Domain Driven Design Quickly Pin
Slacker00722-Oct-15 2:08
professionalSlacker00722-Oct-15 2:08 
GeneralRe: Domain Driven Design Quickly Pin
Dominic Burford22-Oct-15 2:19
professionalDominic Burford22-Oct-15 2:19 
GeneralKeeping your skills up-to-date (sharpening your axe) Pin
Dominic Burford15-Oct-15 20:33
professionalDominic Burford15-Oct-15 20:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.