Home / ASP.NET Weblogs

Browse by Tags

Related Posts

  • Building an N-Layer ASP.NET Application with LINQ, Lambdas and Stored Procedures (Updated)

    Update: I refactored some of the code and also did a better job ensuring Dispose() is called everywhere so that the DataContext object gets cleaned up properly. Download the Application Here .NET 3.5 has a lot of great new features that can significantly enhance developer productivity. I've been spending...
    Posted to Dan Wahlin's WebLog (Weblog) by dwahlin on 02-28-2008, 12:00 AM
    Filed under: ASP.NET, ASP.NET AJAX, .NET, C#, Architecture, LINQ, Lambdas
  • Are Page Modules Still Useful In IIS7?

    With IIS7 a new transfer method is available in the HttpServerUtility class . It's the TransferRequest method . What this method is intended to do is behave like the HttpResponse.Redirect method without the penalty of traveling to the client and back . I said "is intended to behave" because it still...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 10-15-2007, 12:00 AM
    Filed under: Community, ASP.NET, SoftDev, Web, MVP, MSDN, Microsoft, Architecture, .NET, PageModules, C#, IIS
  • You Don't Always Need Page Modules

    From my article on Page Modules some people might have gotten the wrong impression that this would be the only way to get a reference to the page given its path, but it isn't. You can use the System.Web.UI.PageParser.GetCompiledPageInstance method to get the reference to the page before calling the System...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 09-16-2007, 12:00 AM
    Filed under: Community, ASP.NET, SoftDev, Web, MVP, MSDN, Microsoft, Architecture, .NET, PageModules, C#
  • Back on new Blog Software CS

    this is more or less a test posting the UI have changed completley and i want to figure out how, what and why took some while and email support to figure out how this works. Done some ugly trick to get the tags in my [Select Tag] list posted all of the tags, which i copied from the start page .NET,.net...
    Posted to Hannes Preishuber (Weblog) by preishuber on 05-22-2006, 12:00 AM
    Filed under: ASP.NET, C#, .NET, Miscellaneous, Tips, XML, Personal, Agile, Ajax, Sql, Security, Technology, .NET General, Community, Databases, SharePoint, Tools, .NET Rocks!, Web, .net development, VB.NET, Windows, News, Architecture
  • Nullable types and ?? operator

    This time, i would like to discuss about a cool feature of C# 2.0. As you know, some database operations return null values and results into throwing exceptions unless you handled well in your business logic. .Net 2.0 has been solved by introducing nullable types. Lets discuss about its features and...
    Posted to Runtime Debugger - kannan M ambadi's blog (Weblog) by kannan.ambadi on 06-06-2008, 12:00 AM
    Filed under: Asp.Net, C#, C# 2.0, Nullable types, .NET, microsoft, visual studio, Asp.Net 2.0, .NET 3.5, .NET 2.0, ASP.NET 3.5, .Net Development, .NET Framework, Visual Studio 2008, Web 2.0, Web Development, ORM Architecture, Tools, Architecture, Performance, Code Perfromance, Web, Tips, General Software Development, Tips and Tricks, Software Development, 3-Tier Architecture, C# Properties
  • The short example about Entity Framework 4 CTP4 - Part 2

    Part 2: Repository and Unit of Work on Entity Framework 4 Create the repository for persistence ignorance Up to now, I very love the Persistence Ignorance. So what is it? I remembered that I usually built the Data Access Layer for access Database in the past. That is make your layer is coupling with...
    Posted to Context is King (Weblog) by thangchung on 07-20-2010, 12:00 AM
    Filed under: C#, Architecture, Pattern, ASP.NET, .NET, EF4
  • The short example about Entity Framework 4 CTP4 - Part 1

    A few days ago, I have read an article from Mr. huyrua , the person that I have a deep respect. The code that he implemented is very good to me. And I have an idea for implementing something in Entity Framework 4. You can go to http://huyrua.wordpress.com/2010/07/13/entity-framework-4-poco-repository...
    Posted to Context is King (Weblog) by thangchung on 07-20-2010, 12:00 AM
    Filed under: C#, Architecture, Pattern, ASP.NET, .NET, EF4
  • The short example about Entity Framework 4 CTP4 - Part 3

    Part 3: Invoke store procedure in ADO.NET Entity Framework 4 Come with Entity Framework extensions Go to http://code.msdn.microsoft.com/EFExtensions/Release/ProjectReleases.aspx?ReleaseId=3624 . And getting a source code of Entity Framework extensions, you must build it and get the dll with named EFExtensions...
    Posted to Context is King (Weblog) by thangchung on 07-20-2010, 12:00 AM
    Filed under: C#, Architecture, Pattern, ASP.NET, .NET, EF4
  • Breaking if statements with pattern

    Notes: updated with comment from Sean Stapleton I re-coded SearchCategoryCriteriaType enum type as: [ Flags ] public enum SearchCategoryCriteriaType : int { None = 0, Id = 1, Name = 2, CreatedUser = 4, CreatedDate = 8, All = Id | Name | CreatedUser | CreatedDate } And changed code with this modification...
    Posted to Context is King (Weblog) by thangchung on 06-20-2010, 12:00 AM
    Filed under: Lambda Expression, IoC, C#, Architecture, Pattern, ASP.NET
  • Integrated StructureMap container for the MvcServiceLocator in ASP.NET MVC 3

    ASP.NET MVC 3 just released a few days ago. In this release, Microsoft team published some features very cool. I really love that, because we shall code easier. See release note for more information. And in this post, I would like to explore about MvcServiceLocator, one of features very interesting in...
    Posted to Context is King (Weblog) by thangchung on 07-29-2010, 12:00 AM
    Filed under: IoC, C#, Architecture, Pattern, ASP.NET, ASP.NET MVC, .NET, StructureMap
Page 1 of 2 (17 items) 1 2 Next >