Search Results

1
vote

Why is the behaviour of datetime in JSON different on different systems (win xp, server 2003)?

I would suspect this has to do with the DateTime.Kind property introduced in .NET 2.0. By default this is set to DateTimeKind.Unspecified, which is most of the time handled the same as DateTimeKind …
1
vote

“Could not load type” in web service converted to VB.NET

In VB.NET, namespace declarations are relative to the default namespace of the project. So if the default namespace for the project is set to X.Y, everithyng between Namespace Z and …
1
vote

Invoking asynchronous call in a C# web service

If the 3rd party component does not support the standard asynchronous programming model (i.e it does not use IAsyncResult), you can still achieve synchronization using AutoResetEvent or ManualReset …
1
vote

DynamicPopulateExtender ,TextArea and line feeds

The problem is that the white space is ignored by default when the XML is processed. Try to add the xml:space="preserve" attribute to the string element. You'll also need to define the …