Keith

15,584
reputation
1054 views

Registered User

name Keith
member for 1 year
seen Dec 17 at 12:40
website
location Chester, UK
age 32
Keith Henry

Software development manager, running a C# Agile team building applications to pay people fairly in large organisations.

Currently doing an MBA and used to be a high-school maths and IT teacher.

Online profile

Blog

Email me on Google's email, my address is ForenameSurname.

Dec
16
comment Cassini much slower than IIS for MVC RenderPartial
Thanks (+1) that fixes the issue but doesn't quite explain why. Both services are running the exact same code (a debug build) with the exact same web.config - why does Cassini decide to ignore the cache?
Dec
16
asked Cassini much slower than IIS for MVC RenderPartial
Dec
16
revised Replace a string with a user control
update following OP comment; added 312 characters in body
Dec
16
comment Form to object and loop through objects in c#?
The return type should be IEnumerable<Control>, not IEnumerator<Control>
Dec
16
comment Form to object and loop through objects in c#?
Updated example - this needs to be in its own static class. The you will be able to do foreach(var ctrl in frmMain.DescendantControls() ) { ...
Dec
16
revised Form to object and loop through objects in c#?
update following OP comment
Dec
15
answered Replace a string with a user control
Dec
15
answered Form to object and loop through objects in c#?
Dec
15
comment Form to object and loop through objects in c#?
Here you do is, but then cast, but as Control is a reference type it's quicker to do var f = o as Control; if( f != null ) ...
Dec
15
accepted ASP.Net @ Symbol
Dec
15
comment ASP.Net @ Symbol
In that think they're using @ because SQL server does that before all parameters. I've updated my answer.
Dec
15
revised ASP.Net @ Symbol
added 95 characters in body; added 230 characters in body
Dec
15
answered ASP.Net @ Symbol
Dec
15
answered jquery click() not fired in ie8
Dec
14
comment C# Delegates and Events design help
@Repo Man - how come? If that isn't thread safe (and as I haven't locked here it isn't) and someone removes a subscriber while I'm going through wouldn't that just result in a NullReferenceException? Why would it race? In MS's own code they use this pattern all over the place. Also - is there a better way to test for a subscriber then?
Dec
10
answered Most reliable split character
Dec
8
answered Limit collection by enum using lambda
Dec
8
comment Technology choice for redesigning an old VisualBasic-Application
Hmm - as a development manager what I'd want to know at interview would be that you understood when best to use C# and when to use VB.Net - I don't care which one you have on your CV if you understand how .Net works. C# is more commonly used, but VB.Net is currently much better suited to any kind of interop. The answer: "We used C# because it was prettier/more fun/looks better on my CV" when your project needed a lot of interop would lose you points at interview.
Dec
8
answered Strange issue about # in url
Dec
7
answered Technology choice for redesigning an old VisualBasic-Application
Dec
6
awarded  Mortarboard
Dec
6
awarded  Necromancer
Dec
4
awarded  Tumbleweed
Dec
3
comment Tab versus space indentation in C#
Basically yeah - either everyone uses tabs or everyone uses spaces. Otherwise merges get ugly. You have to agree with everyone and use the same settings. Once you have, for any user, if they hit Ctrl+K,D it will fix all the formatting to be your standardised style.
Dec
3
revised Making WCF easier to configure
deleted 4 characters in body
Dec
2
comment Making WCF easier to configure
I've also blogged on why this has changed: bizvprog.blogspot.com/2009/11/…
Dec
2
answered Making WCF easier to configure
Nov
30
revised Creating a CalDAV service with .Net
Update following some further research
Nov
30
comment IE7 float right problems
IE6 and 7 both do this, and it's caused by their stunningly creaky layout engine - it was never built with CSS in mind and it still shows, even in IE8. The 2nd option here (put the float:right element first) is probably the most commonly seen.
Nov
27
revised Difference between iCalendar (.ics) and the vCalendar (.vcs)
mis spelt tag
Nov
27
asked Creating a CalDAV service with .Net
Nov
27
answered Master-Detail View ASP.NET MVC
Nov
27
answered How to embed links in localized text.
Nov
25
comment Stop the browser “throbber of doom” while loading comet/server push XMLHttpRequest
Cheers - on the progress I think the significant difference is that a user click has initiated a new process, rather than the page load (which is why sometimes the wait works). Actually I'd like to see better support for async events - perhaps the browser should show something more consistently when the user initiates something with an XMLHttpRequest. That way there wouldn't be 1000nds of different spinners on different sites and fewer sites that appeared to do nothing on a click and then load extra content after a few seconds.
Nov
24
answered Stop the browser “throbber of doom” while loading comet/server push XMLHttpRequest
Nov
11
awarded  Popular Question
Nov
7
comment How to Enable ActiveX in Chrome?
They have taken the NPAPI standard - although I understood that the're adding extensions to it. I know Chrome's not a VM, but it's a hell of a lot more secure than ActiveX. I didn't know that it supports all NPAPI plug-ins, I thought it was just a subset. Google's current problem is that they need the plug-in developers to make changes to give Chrome more control of how it isolates the plug-ins. My point is that a set of NPAPI clothes for an ActiveX might make it work, but it's going to be messy, and lots of work. What's the benefit for you? Why support Chrome at all?
Nov
6
comment How can I get at a code file attachment in Outlook?
2007, but it's done it since 2000 I think
Nov
6
comment How to Enable ActiveX in Chrome?
Wow - that's like Chrome Frame in reverse. In this case why use Chrome at all - you'd just lose the piles of stuff from IE without gaining any performance.
Nov
6
revised How to Enable ActiveX in Chrome?
Added link to original Chrome comic
Nov
6
answered How to Enable ActiveX in Chrome?
Nov
6
asked How can I get at a code file attachment in Outlook?
Nov
6
awarded  Nice Answer
Nov
3
answered Is double Multiplication Broken in .NET?
Nov
2
awarded  Popular Question
Oct
31
awarded  c#
Oct
29
answered semi transparent background color but not the Text
Oct
28
awarded  Popular Question
Oct
20
comment Wrong extraction of .attr(”href”) in IE7 vs all other browsers?
It's a little bit of both - IE7 is inconsistent, but jQuery should still handle it.
Oct
14
comment Runtime InvalidCastException with implicit cast operator
IConvertible does all the system value type conversions. I thought that in VB.Net you could do Public Shared Widening Operator CType(ByVal input As Bar) As Foo and it would be the same as the public static implicit operator Foo ( Bar input )