2
votes
How to convert a Unicode character to its ASCII equivalent
You cannot use the default ASCII encoding (Encoding.ASCII) here, but must create the encoding with the appropriate code page using Encoding.GetEncoding(...). You might try to use code page 1252, wh …
2
votes
What the best rollover log file tracelistener for .NET
You could use Microsoft.VisualBasic.Logging.FileLogTraceListener, which comes built-in with the .NET Framework. Don't let the VisualBasic in the namespace scare you, you'll just have to reference t …
0
votes
How can I share application configuration in a .net application?
You can also put the configuration settings into the machine.config to share them amongst multiple applications. This makes deployment more problematic though.
…
0
votes
How do you ‘clone’ WebControls in C# .NET ?
The way to do this in ASP.NET is using templates. There are samples in MSDN for this, just look for templated controls / ITemplate.
…
0
votes
How to turn off warning for no xml comment in VS 2005
The only way I know is turning off XML documentation generation. This can be done on under Project properties / Compile / Generate XML documentation file.
…
2
votes
What are best practices for using thread local storage in .NET?
A gotcha for asp.net applications: the processing of a single request might switch threads, namely if there are parallel requests in the same session. Because of this, anything you put in TLS befor …
1
vote
Unit test Custom membership provider with NUnit throws null reference error
I'm quite sure you should call provider.Initialize(...) in your test code before calling CreateUser.
…
0
votes
.Net 2.0: How to subscribe to a event publisher on a remote computer using transient subscriptions?
As you are talking about COM and remote computers, I suspect you'll have to do some DCOM security configuration.
…
0
votes
Can ADO.NET Data Services use named pipes as a transport
In .NET 3.5 there is built-in named pipe binding for WCF. See the MSDN for details. …
0
votes
Visualizing the code involved in an action?
You could use a code coverage tool like NCover even without any unit testing frameworks. Just run the application through NCover, and check the r …
1
vote
unable to post a https WebRequest in .net?
You could make a trace of the HTTP traffic using Fiddler or a network packet sniffing tool like …
0
votes
Synchronisable CRM System
You might want to take a look at the Microsoft Synch Framework. I haven't used it yet, so I cannot give a personal opi …
3
votes
Does RegularExpressionValidator use other flavor than Regex?
The RegularExpressionValidator also supports client-side validation using JavaScript, where the JavaScript Regex engine is used. The difference you see is the difference between the JavaScript and …
4
votes
Read Csv file encoding error
Try using CharacterSet=UNICODE in your schema.ini file. Although this is not documented on MSDN it wo …
0
votes
.NET 1.1 and .NET 2 config files working together
The problem seems to be that because Bravo.dll targets 1.1, the 1.1 version of the framework gets loaded, and, as you say, the applicationSettings section is new in .NET 2.0. The solution is to for …
