Tosh | Shared With: Everyone - 24 days ago | .net, asp.net, gzip
Tosh | Shared With: Everyone - Dec 02 2008 | development, .NETJust noticed the .NET 3.5 framework contains classes for emitting Atom and RSS for you. Presumably the emitted content validates.
Quoted: Represents a top-level feed object, <feed> in Atom 1.0 and <rss> in RSS 2.0.
Tosh | Shared With: Everyone - Oct 23 2008 | development, .net
Tosh | Shared With: Everyone - Oct 16 2008 | development, .net, asp.net
Here is an MSDN article on the ASP.NET MVC framework from March.
Quoted: ... a controller can be instantiated directly, and action methods called, without any additional infrastructure. You don't need an HTTP context, and you don't need a server, just a test harness.
...
the ASP.NET MVC Framework offers Web developers a new way to build Web applications in the Microsoft .NET Framework. The Framework is designed for testability, embraces HTTP instead of trying to abstract it away, and is extensible at just about every point.
Tosh | Shared With: Everyone - Sep 29 2008 | microsoft, .net, javascript, jquery
Refaving Derek. Visual Studio will ship with jQuery. Neat.
Quoted: I'm excited today to announce that Microsoft will be shipping jQuery with Visual Studio going forward. We will distribute the jQuery JavaScript library as-is, and will not be forking or changing the source from the main jQuery branch. The files will continue to use and ship under the existing jQuery MIT license.
Tosh | Shared With: Everyone - Jul 25 2008 | development, .net, c#
var in c#
Quoted: Variables that are declared at method scope can have an implicit type var. An implicitly typed local variable is strongly typed just as if you had declared the type yourself, but the compiler determines the type.
...
// Example #2: var is required because
// the select clause specifies an anonymous type
...
var custQuery = from cust in customers
where cust.City == "Phoenix"
select new { cust.Name, cust.Phone };
...
// var must be used because each item
// in the sequence is an anonymous type
foreach (var item in custQuery)
{
Console.WriteLine("Name={0}, Phone={1}", item.Name, item.Phone);
}
Tosh | Shared With: Everyone - Jul 23 2008 | facebook, .NET, development
New .NET Facebook API on CodePlex.
Quoted: Recent changes to the Facebook API are being evaluated and a Toolkit update will be released at the end of this week as a point release (version 1.7). We are planning to address the changes to the platform that specifically cover the new user profile design and session changes to many of the existing methods.
Tosh | Shared With: Everyone - Apr 23 2008 | facebook, .net, development
Tosh | Shared With: Everyone - Apr 23 2008 | facebook, .net
Tosh | Shared With: Everyone - Mar 07 2008 | .net, microsoft
Related Content from Around Faves
.net
-
1 FaverViewed: 33 TimesQuoted: Introduction to Irony - a new technology of parser/compiler construction for .NET; Author: Roman Ivantsov; Section: Algorithms & Recipes; Chapter: General Programming
- Tosh - Oct 16 20083 FaversViewed: 11 Times
- tsupo - Aug 11 20071 FaverViewed: 14 Times





