technophile

980
reputation
64 views

Registered User

name technophile
member for 1 year
seen 2 days ago
website
location Austin, TX
age 32
I am a system architect and ice hockey defenseman in Austin, TX. I am fortunate enough to have a beautiful, brilliant wife, the world's most perfect two-year-old, and two dogs and a cat who hurl regularly.
Dec
14
comment Stored Procedure WHERE LIKE ID or NAME
Not that I'm recommending that. ;)
Dec
14
comment Stored Procedure WHERE LIKE ID or NAME
Alternately, using three stored procedures (one for IDs, one for names, and a third that decides which to call) would also resolve the execution plan issue.
Oct
25
accepted Migrating asp.net website from IIS6 to IIS7 - Debugging differences
Oct
23
answered Algorithm for Auto-Appending a Unique ID to Duplicate Titles
Oct
23
comment How can I know the day name from a selected date?
I wouldn't use the ToString. If you need it for comparisons or storage, just use the enum value. Otherwise, using the dddd format specifier as in Fredrik's answer is better for localization.
Oct
23
comment How can I know the day name from a selected date?
+1 for the dddd format answer.
Oct
23
comment Dynamic typing of foreach variable.
@Joel You don't know what actual type Button is, so that's hard to say definitively.
Oct
23
answered Dynamic typing of foreach variable.
Oct
23
answered Migrating asp.net website from IIS6 to IIS7 - Debugging differences
Oct
22
answered Is it ok to use ticks to pass datetime using ticks between pages of an application
Oct
13
comment Specify configuration file when running Tests on TFS Buid server
You need to put it inside a PropertyGroup, i.e. <PropertyGroup> <RunConfigFile>...</RunConfigFile> </PropertyGroup>
Oct
9
accepted Custom build task: how to write output to the build log file
Oct
8
comment Autocomplete email address and/or names in C#
You need to specify WinForms or ASP.NET; the solutions are very different.
Oct
8
answered Custom build task: how to write output to the build log file
Oct
8
answered TFS Changeset history using QueryHistory after branch rename
Oct
8
comment C# - Does foreach() iterate by reference?
It won't make a difference to the functionality he's interested in. Four copies of the same list will all reference the same actual objects, so whether you modify them from List1 or List3, either will result in the original object being modified. The only thing it will affect is if you add or remove items to/from the list, that wouldn't affect any copies of the list.
Oct
8
comment C# - Does foreach() iterate by reference?
This is true even for value types, i.e. structs.
Oct
8
comment MSBuild TFS Build Number
Ah, yes, that's a good solution for non-team build builds, I'll have to remember that.
Oct
8
accepted MSBuild TFS Build Number
Oct
8
answered MSBuild TFS Build Number
Oct
1
comment Setting Membership Store Passwords
Yeah, ASP.NET doesn't give you that much control over how the password is hashed in the default providers; you could do it in a custom membership provider easily enough, though. Interesting solution.
Oct
1
accepted Setting Membership Store Passwords
Oct
1
answered Setting Membership Store Passwords
Sep
28
awarded  Yearling
Aug
8
revised Converting bytes to GB in C#?
Fixed a typo in the third method.
Aug
7
answered Converting bytes to GB in C#?
Jul
19
comment Order of catch clauses
If you have enough catch blocks on a single try that you need to list them in priority order in order to understand it, I would assume your code needs refactoring. :-P
Jul
19
answered Order of catch clauses
Jul
10
comment can a textNode have a childNode which is an elementNode ?
That would be my guess. However, it wouldn't be the first time some code got printed in a book despite being completely wrong. :)
Jul
10
comment can a textNode have a childNode which is an elementNode ?
I added a bit at the end of my answer -- I don't think it's wrong, I think the DOM will do the right thing there.
Jul
10
revised can a textNode have a childNode which is an elementNode ?
added 184 characters in body
Jul
10
answered can a textNode have a childNode which is an elementNode ?
Jul
8
comment ItemGroup Item scope, alternatively “Why does MSBuild hate me?”
@David I'm not sure what you mean. You can do what you originally intended (default it if it's not passed on the command line) like so: <PropertyGroup> <Version Condition=" '$(Version)' == '' ">0.0.0.0</Version> </PropertyGroup> What that will do is check to see if the Version property was passed in and, if not, set it to 0.0.0.0. If you leave the Condition attribute off, it will unconditionally override whatever ws passed on the command line.
Jul
7
comment Multiplying strings in C#
@JulianR Good to know, thanks!
Jul
7
revised Asp.NET Server Control Postback
Added button.ID suggestion
Jul
7
comment ItemGroup Item scope, alternatively “Why does MSBuild hate me?”
Thanks Chris. :) We're in the middle of doing a bunch of work on our CI environment, so this is all very fresh in my mind. ;)
Jul
7
accepted ItemGroup Item scope, alternatively “Why does MSBuild hate me?”
Jul
6
comment ItemGroup Item scope, alternatively “Why does MSBuild hate me?”
Just FYI, Exists doesn't do what that code seems to expect it to do. Exists checks to see if the named file exists, not whether the named variable exists. You probably want Condition="'$(Version)'==''" instead. See msdn.microsoft.com/en-us/library/…
Jul
6
comment ItemGroup Item scope, alternatively “Why does MSBuild hate me?”
I haven't seen any. Have you tried just moving the ItemGroup outside the Targets entirely? Is there a reason you don't want to do that?
Jul
6
comment Asp.NET Server Control Postback
CreateChildControls may be called during Control.Init. However, it can be called from other places as well (EnsureChildControls may be called at any point).
Jul
6
answered ItemGroup Item scope, alternatively “Why does MSBuild hate me?”
Jul
6
answered Asp.NET Server Control Postback