Browse by Tags

Related Posts

  • Troubleshooting ASP.NET MVC Routing

    One thing I absolutely love about the ASP.NET MVC framework is that there isn't too much "magic". Magic can be nice if you are able to adhere to a framework's "Golden Path", but as soon as some customization becomes necessary you find that the magic can get in the way (DataContractSerializer anyone?...
    Posted to i have a framework... (Weblog) by fdumlao on 09-09-2008, 12:00 AM
    Filed under: ASP.NET, Orcas, ASP.NET MVC, .NET
  • Visual Studio 2008 Service Pack 1 Released [No More BETAs for this Version]

    Very Quick Note: Visual Studio 2008 Service Pack 1 was released finally (in combination with .NET Framework 3.5 Service Pack 1 of course). To sum up for some people, note that VS 2008 SP1 includes ADO.NET Entity framework (and its designer) as well as ADO.NET Data Services, but NOT ASP.NEt MVC framework...
    Posted to Guru Stop (Weblog) by Mohamed Meligy on 08-12-2008, 12:00 AM
    Filed under: Visual Studio, SQL Server, Orcas, .NET
  • Converting VS 2008 Website to Web Application

    Background (skip if you know Web Application Projects) In VS 2002/2003, the web project model for a website was similar to "class library" projects, where you have a .CSPROJ or .VBPROJ file that keeps track of files "included" in the project, and compiles all the pages and controls code behind to a single...
    Posted to Guru Stop (Weblog) by Mohamed Meligy on 08-03-2008, 12:00 AM
    Filed under: ASP.NET 2.0, ASP.NET, Visual Studio, Orcas, .NET FAQ, .NET
  • Another simple use of extension methods!!

    While my team and I doing our daily work. One of our new team members asked that he needs the user to select a value from drop-down list and this value should be converted to a nullable integer value. The small issue he faces that he need to parse the value selected in one line of code and make sure...
    Posted to Huthaifa Afanah (Weblog) by IsToFix on 03-26-2008, 12:00 AM
    Filed under: .Net, VS2008, Extension Methods, Orcas
  • File System search via LINQ to Objects

    LINQ provides a standard way for developers to query data in diverse locations, ranging from in memory objects, XML data, or relational data living in an SQL Server Database.Lets take a look at a scenario where we use Linq to objects to query a directory on the local drive for files that match a given...
    Posted to Jaycent Drysdale (Weblog) by jaycent on 02-15-2008, 12:00 AM
    Filed under: C#, .NET, Windows Forms, Orcas
  • Working with USB to Serial port adapter on .NET

    You can't solve a problem with the same kind of thinking that created it. — Albert Einstein (1879-1955) Yesterday I spent a lot of time trying to get a speed radar to work on my .NET application. Every test was giving us diferent results. We made hundreds of tests, but every time we thought we found...
    Posted to Matias Paterlini (Weblog) by paterlinimatias on 01-16-2008, 12:00 AM
    Filed under: WPF, Orcas, Team System, Vista, Infocard, Commerce Server, WinFX, .NET FAQ, Atlas, Web Services, Agile, CLR, Biztalk, BCL, WCF, Avalon, WWF, AJAX, General Software Development, Windows Forms, Content Management Server, ASP.NET, Visual Basic, C#, Sharepoint, Mobile, IIS, Community News, Crossbow, Visual Studio, .NET, SQL Server
  • C#: My First Lambda Expression

    I don't know about anyone else, but I found it annoying to have to put on three-lines of code (or one ugly one-line of code) for an IF statement for argument validation. Mostly, I want to check a simple condition and if true, throw an exception. Well, lambda to the rescue! I find the lambda version much...
    Posted to The Technical Adventures of Adam Weigert (Weblog) by adweigert on 12-16-2007, 12:00 AM
    Filed under: c#, .net, Orcas
  • C#: My First Extension Method

    I will find many, many uses for this ... maybe someone else will too! using System; using System.Diagnostics; internal static class StringExtensions { public static T ToEnum<T>( this string value) where T : struct { Debug .Assert(! string .IsNullOrEmpty(value)); return (T) Enum .Parse( typeof ...
    Posted to The Technical Adventures of Adam Weigert (Weblog) by adweigert on 12-08-2007, 12:00 AM
    Filed under: c#, .net, Orcas
  • Lambda Expressions to Replace Inline Delegates

    I've taken a change from using 'inline-delegates' which were introduced in .NET 2.0 (in C# 2) to using Lambda expressions for those quick "one-liner" functions. The great thing is that you can do this in C# 3.0 or VB9 ! If you didn't already know, C# 3.0 and VB 9 are in the new release of the .NET 3...
    Posted to Timothy Khouri - SingingEels.com (Weblog) by Nullable on 10-07-2007, 12:00 AM
    Filed under: General Software Development, C#, .NET, Orcas
  • LINQ, Lamda and Extension Methods Work Together!

    Thanks to the new language features such as LINQ, Extension Methods and Lambda in .NET 3.5, working with arrays is as easy as one line. Just by including a reference to the System.Linq namespace in your .Net 3.5 project you automatically get so much functionality it's not even funny. Let's take for example...
    Posted to Timothy Khouri - SingingEels.com (Weblog) by Nullable on 09-27-2007, 12:00 AM
    Filed under: General Software Development, C#, .NET, LINQ, Orcas
Page 1 of 6 (55 items) 1 2 3 4 5 Next > ... Last »
Microsoft Communities