- Posted by Ian Suttle on July 30, 2007
- Filed under .NET 3.5 | JSON
The JsonQueryStringConverter class comes equipped with the .Net
Framework 3.5. The basic premise here is
you can serialize an object into a JSON-like string which can be passed via
query string. Typically this class is to
interact via Windows Communication Foundation although it&rs...
[More]
- Posted by Ian Suttle on July 26, 2007
- Filed under .NET 3.5 | Visual Studio
Scott Guthrie has officially announced the Beta 2 release of Visual Studio 2008 and the .Net Framework 3.5. You can see additional information on Scott Guthrie's blog. You can download the full version of Visual Studio 2008 here or get Visual Studio 2008 Express Editions here.
...
[More]
- Posted by Ian Suttle on July 23, 2007
- Filed under .NET 3.5
C# 3.0 introduces
implicitly typed local variables by way of the keyword “var”.
The use of var allows one to
assign a number of different types to a variable without explicitly stating
that variable’s type. Var is actually not a type at all, but
a keyword w...
[More]
- Posted by Ian Suttle on July 20, 2007
- Filed under .NET 3.5
Automatic properties, or more formally known as an auto-implemented property, saves time and effort thanks to .Net Framework 3.5.
[More]
- Posted by Ian Suttle on July 20, 2007
- Filed under AJAX | ASP.Net
Create AJAX calls using ASP.NET 1.1 and javascript.
[More]
- Posted by ian suttle on July 20, 2007
- Filed under ASP.Net
I was discussing Session State interoperability between ASP Classic and ASP.NET with one of my developers. Obviously Microsoft did not provide us, the developer community, with a means of making our ASP.NET applications backwards compatible with ASP Classic. I h...
[More]