Click here to Skip to main content
15,889,391 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.


 
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 
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 

Introduction

As a design standard where I work we allow users to click on the label of a control which sets the focus to the control associated with the label. For example if there is a label with an associated textbox, then by clicking on the label, this will set the focus to the textbox in the same way as clicking directly on the textbox itself. We use this technique for all input controls such as dropdowns, checkboxes etc. This is a very simple behaviour but makes your web forms just that little bit easier to use.

Setting focus to an associated control


There are two ways you can achieve this behaviour. You can either use an HTML label control or an ASP.NET label control. Both can be used to achieve this behaviour.

Using an HTML label control


Using an HTML label you need to specify the for keyword when declaring your label control.

HTML
<label for="<%= this.textbox.ClientID %>">I am a label</label>

Use the for keyword to specify the associated control i.e. the input control that is associated with the label. In the example code here I have associated the label with a textbox control. Therefore if the user clicks on the label the textbox gets the focus.

Using an ASP.NET label control

You can achieve exactly the same behaviour using an ASP.NET label. You need to specify the AssociatedControlID keyword when declaring your label control.

HTML
<asp:Label ID="textboxLabel" runat="server" AssociatedControlID="textbox"></asp:Label>

Use the AssociatedControlID keyword to specify the associated control i.e. the input control that is associated with the label. In the example code here I have associated the label with same textbox control as in the previous example.

Summary

This is a very simple tip but makes your forms that little bit more usable for an end-user.


"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


modified 16-Dec-15 1:13am.

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 
GeneralRe: Keeping your skills up-to-date (sharpening your axe) Pin
Slacker00715-Oct-15 22:07
professionalSlacker00715-Oct-15 22:07 
GeneralRe: Keeping your skills up-to-date (sharpening your axe) Pin
Dominic Burford16-Oct-15 1:19
professionalDominic Burford16-Oct-15 1:19 
GeneralTruths about software development Part III Pin
Dominic Burford7-Oct-15 21:07
professionalDominic Burford7-Oct-15 21:07 
GeneralRe: Truths about software development Part III Pin
Slacker0077-Oct-15 21:35
professionalSlacker0077-Oct-15 21:35 

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.