Search Results

10
votes
5answers
1k views

Why is F# so special?

In the microsoft and .net world, is there an industry trend towards F# and functional programming, moving away from C# and VB.NET? What is it about F# that is so special? What does it prov …
2
votes

Exception in Web Service locks DLL and prevents publishing. Workaround?

Using the IISReset command line tool will only restart IIS on the local machine, not on a remote server to which you are publishing. Assuming that you are publishing to a Windows 2003 serve …
2
votes

Referencing Embedded resources from other resources in c#

I'd suggest that you emit the web resources as a dynamic javascript associative array. Server side code: StringBuilder script = new StringBuilder(); script.Append("var imgRe …
2
votes

Referencing Embedded resources from other resources in c#

I concur with Jason's assessment of the initial solution I proposed, it can definitely be improved. My solution represents an older school javascript mentality (read, pre the emergence of ajax and …
1
vote

XMLSerialization in C#

Try adding IXmlSerializable to your IMessageHeader declaration, although I don't think that will work. From what I recall, the .net xml serializer only works for concrete classes that have …
2
votes

autoeventwireup performance cost

From MSDN article. Performance Tips and Tricks in .NET Applications Avoid the Autoeventwir …
0
votes

Annoying exception in asp.net

My initial guess is that ViewState remembers the error message. Try disabling ViewState on the JSLiteral control. …