Robert C. Barth

3,930
reputation
353 views

Registered User

name Robert C. Barth
member for 1 year
seen Dec 9 at 21:53
website
location Chandler, AZ
age 35
Software engineering manager for a large, publicly-traded for-profit institution of higher-learning.
Dec
6
awarded  Mortarboard
Nov
26
comment How To Figure Out if an HTML Block Does Not Contain Any Text Nodes
I understand your point, but the possibility of this happening is near-zero in my circumstance; the XHTML is generated by a tool (TinyMCE) and the user may not edit it.
Nov
26
comment How To Figure Out if an HTML Block Does Not Contain Any Text Nodes
innerText is an IE-only property; there is no corss-browser equivalent.
Nov
26
comment How To Figure Out if an HTML Block Does Not Contain Any Text Nodes
Unfortunately, I've used the XmlDocument object enough to know that it's not my first choice. However, it may be my only choice.
Nov
25
asked How To Figure Out if an HTML Block Does Not Contain Any Text Nodes
Nov
15
accepted ASP.NET : Intermittent ‘Access Denied’ Error When Uploading Files
Nov
3
comment SQL Server Database Design Problem/Challenge
The manipulation and definition of the hierarchy is a business rule and therefore belongs in the business rules layer, not the DAL, if you're going to resort to code.
Oct
22
accepted Change Default Locale in IIS 6.0
Oct
13
awarded  Popular Question
Oct
12
awarded  Enlightened
Oct
12
accepted Do I need a lawyer to start a side (not work-related) project with a third party?
Sep
16
awarded  Yearling
Sep
7
accepted Web Parts with a markup file?
Aug
26
comment Subversion - should anyone be developing off the trunk?
Another thing: how do you do parallel development with a dynamic trunk without becoming inconsistent in your process? Static trunk permits this as you just create another branch, same as always. What happens if you're using dynamic trunk, and need to release a hotfix after development has started on a new version? Now you have development going on in both the trunk and in a branch, breaking consistency in your dynamic trunk model. IMO, dynamic trunk works find for small teams; once the team/product becomes larger, the static trunk model works much better.
Aug
26
comment Subversion - should anyone be developing off the trunk?
A stable trunk permits a single place to go to get the released source code. Also, it permits experimentation, and the possibility of forgetting to branch the previous release before someone starts messing with the trunk is not a possibility, making it impossible to lose the production source if needed for a rebuild/rollback.
Aug
14
accepted Don’t mix Response.Write with AJAX, but what about UI.HtmlTextWriter?