Home / ASP.NET Weblogs

Browse by Tags

Related Posts

  • MSDN Ramp Up Program

    I just came across this: www.MyRampUp Ramp Up is a free, online, community-based program that can help users save time in learning Microsoft technology. The easy-to-access content (provided by subject-matter gurus) is specifically tailored to the Ramp Up program, and offered in a variety of forms (whitepaper...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 11-07-2008, 12:00 AM
    Filed under: Community, MSDN, Microsoft, C#, VisualStudio, VisualBasic, VisualStudio2008, Training, SharePoint
  • Going to California

    I’m flying to San Jose tonight for tomorrow’s OpenAjax Alliance face to face meeting , which Microsoft is hosting. On Friday, we are also hosting a new event that aims at establishing a dialogue between JavaScript library developers and Microsoft. We’ll have talks from the IE, Visual Studio and ASP.NET...
    Posted to Tales from the Evil Empire (Weblog) by Bertrand Le Roy on 10-22-2008, 12:00 AM
    Filed under: ASP.NET, C#, Atlas, .NET, Microsoft AJAX Library, OpenAjax, Microsoft, MVC, PDC
  • LINQ With C# Book

    Luís just broke the news on our LINQ with C# book. I was honored with the invitation from Luís to write this book with him for FCA , for which he has already published a few books [ ^ ] [ ^ ] [ ^ ] before. This will be an entry level book in Portuguese targeted to anyone wanting to learn LINQ with C#...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 09-22-2008, 12:00 AM
    Filed under: SoftDev, Microsoft, .NET, C#, LINQ, Books
  • Cross domain request in Silverlight 2.0 beta 2

    So you started using Silverlight and you wanted to download a RSS feed, talk to a web service or download a few images from a website to realize that many of the requests you made come back to you empty or you get the 404 error. How do I get the error when I know that web page or image is there? There...
    Posted to Albert Pascual ASP.NET Blog (Weblog) by albertpascual on 09-10-2008, 12:00 AM
    Filed under: C#, ASP.NET, .NET, Silverlight 2.0, Microsoft, AJAX
  • PDC2008: Meet Me In Los Angeles

    It’s not the first time I try but, for one reason or another, this is the first time I will go to the PDC ( Microsoft ’s Professional Developers Conference). According to the site “The PDC is designed for leading-edge developers and software architects. If you’re interested in the future of the Microsoft...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 09-04-2008, 12:00 AM
    Filed under: SoftDev, MSDN, Events, Microsoft, .NET, C#, PDC, PDC2008
  • StyleCop 4.3 Is Out

    The StyleCop team announced the release of a version 4.3 of the StyleCop tool . You can get it from here . On this version there are some bug fixes, new rules and documentation. Also in this version, the list of errors and warnings goes to the Errors List window like with the compilers. I whish that...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 08-21-2008, 12:00 AM
    Filed under: Tools, SoftDev, MSDN, Microsoft, .NET, C#, CodingConventions
  • Enhanced XMLSiteMapProvider with support for dynamic nodes.

    Hello All, This might be a long one so bear with me here this might bore you :). I have have had the need to be able to add dynamic nodes to my sitemap, I am using a sitemap xml file. My first solution, was to create a custom sitemap provider, which would parse the XML and if it detected the node I had...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 08-14-2008, 12:00 AM
    Filed under: ASP.NET, MICROSOFT, .NET 3.5, C#, XML, Configuration, Sitemap
  • Nullable ConvertTo Extension Method

    Hello, I have the need to easily convert a string to another type i.e. int. And would like to return null if the string is empty. I created a quick extension method, thought id post it up incase anyone finds it helpful. /// <summary> /// Converts a string value to the given type, if the string...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 08-12-2008, 12:00 AM
    Filed under: ASP.NET, MICROSOFT, .NET 3.5, C#
  • More On Another Way For Using The “using” Keyword

    In the past I presented another possible use for the using keyword: as hints on LINQ . I’ve been giving some thought about this lately and refined my proposal. var q = from person in personCollection using MyEnumerableExtensions group person by person.LastName into g using new MyOtherComparer () orderby...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 08-11-2008, 12:00 AM
    Filed under: SoftDev, MSDN, Microsoft, .NET, C#, LINQ
  • How About Property Assignment And Collection Adding Like Object And Collection Initializers In C#?

    C# 3.0 introduced object and collection initializers . It is now easier to initialize objects or collections: var person = new Person { FirstName = "Paulo" , LastName = "Morgado" }; var persons = new List < Person > { new Person { FirstName = "Paulo" , LastName = "Morgado"...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 08-11-2008, 12:00 AM
    Filed under: SoftDev, MSDN, Microsoft, .NET, C#
Page 1 of 8 (77 items) 1 2 3 4 5 Next > ... Last »