Skip to main content

Home/ ASP.Net MVC/ Group items tagged asp.net

Rss Feed Group items tagged

Jacques Bosch

Use a Single Web.Config for IIS6 and IIS7 | Dave Donaldson - 1 views

  •  
    "The primary issue with running an ASP.NET site in IIS7 Integrated Pipeline mode is if you have any HTTP modules configured. See, the "problem" is that with ASP.NET under IIS6, there were essentially two pipelines: one for ASP.NET and one for IIS. A request would come into IIS and if the file extension was mapped to the ASP.NET ISAPI extension, the request would be passed off to aspnet_isapi.dll and was then processed by the ASP.NET pipeline, which is where the HTTP modules come into play with regards to events that occur in the pipeline. However, in IIS7 there is only one pipeline for those events, and its used for both IIS7 native modules and ASP.NET modules (once the pipeline events have been taken care of, the file is taken care of by the appropriate ISAPI extension)."
Jacques Bosch

Introducing "Razor" - a new view engine for ASP.NET - ScottGu's Blog - 0 views

  •  
    One of the things my team has been working on has been a new view engine option for ASP.NET. ASP.NET MVC has always supported the concept of "view engines" - which are the pluggable modules that implement different template syntax options. The "default" view engine for ASP.NET MVC today uses the same .aspx/.ascx/.master file templates as ASP.NET Web Forms. Other popular ASP.NET MVC view engines used today include Spark and NHaml. The new view-engine option we've been working on is optimized around HTML generation using a code-focused templating approach. The codename for this new view engine is "Razor", and we'll be shipping the first public beta of it shortly.
Jacques Bosch

Introducing System.Web.Providers - ASP.NET Universal Providers for Session, Membership,... - 1 views

  •  
    "Crazy random logo of evocative clipart combining the .NET Logo and some universal powerplugs into an unofficial logoI always like to remind folks of the equation ASP.NET > (ASP.NET MVC + ASP.NET WebForms). The whole "base of the pyramid" of ASP.NET has lots of things you can use in you applications. Some of these useful bits are Session State, Membership (Users), Roles, Profile data and the provider model that underlies it. Using these isn't for everyone but they are very useful for most applications, even ones as large as the ASP.NET site itself."
Wicked Tunez

Thoughts on ASP.NET MVC, ASP.NET Web API, and ASP.NET Web Pages (Razor) open source ann... - 1 views

  •  
    Thoughts on ASP.NET MVC, ASP.NET Web API, and ASP.NET Web Pages (Razor) open source announcements
Jacques Bosch

Integrating Backbone.js with ASP.NET Web API - Pablo M. Cibraro (aka Cibrax) - 1 views

  •  
    "In case you did not see the latest news, what we used to know as WCF Web API was recently rebranded and included in ASP.NET MVC 4 as ASP.NET Web API. While both frameworks are similar in essence with focus on HTTP, the latter was primarily designed for building HTTP services that don't typically require an user intervention. For example, some AJAX endpoints or a Web API for a mobile application. While you could use ASP.NET MVC for implementing those kind of services, that would require some extra work for implementing things right like content-negotiation, documentation, versioning, etc. What really matter is that both framework share many of the extensibility points like model binders, filters or routing to name a few."
Johann Strydom

Stepping into ASP.NET MVC source code with Visual Studio debugger - Gunnar Peipman's AS... - 0 views

  •  
    Using Visual Studio symbols and source files makes debugging much easier. I am specially happy about ASP.NET MVC 2 source files because I develop on ASP.NET MVC 2 almost every day. You may also find other useful symbols and source files. In this posting I will show you how to get ASP.NET MVC source to your computer and how to use it.
Jacques Bosch

ASP.NET MVC 3 Extensionless URLs on IIS 6 - 0 views

  •  
    "A lot has been written about how to get ASP.NET MVC running on IIS 6 with extensionless URLs. Up until now, the story hasn't been very pretty. When running ASP.NET MVC on ASP.NET 4, it gets a lot easier."
Jacques Bosch

AsyncController v/s SessionLess Controller - Imran Baloch's Blog - 1 views

  •  
    " AsyncController is introduced in ASP.NET MVC 2 while SessionLess controller is introduced in ASP.NET MVC 3. AsyncController allows you to perform long running I/O operation(s) without making your thread idle(i.e., waiting for I/O operations to complete). On the other hand, SessionLess controller allows you to execute multiple requests simultaneously for single user, which otherwise execute multiple requests sequentially due to session synchronization. Understanding these concepts may be easy for you but I have seen a lot of guys become confused on these concepts. In this article, I will show you how to use AsyncController and SessionLess controller in ASP.NET MVC application. I will also compare them and tell you what to use when, where, and the why."
Wicked Tunez

ASP.NET - Download: Sprite and Image Optimization Preview 3 - 0 views

  •  
    ASp.net Sprite and image optimization framework. Works for Asp.net MVC3 and Asp.net webforms 4
Jacques Bosch

What's New in ASP.NET 4.5 and Visual Studio 11 Beta: The Official Microsoft ASP.NET Site - 1 views

  •  
    "This document describes new features and enhancements that are being introduced in ASP.NET 4.5. It also describes improvements being made for web development in Visual Studio (Visual Web Developer). "
Jacques Bosch

Making your ASP.NET Web API's secure | John V. Petersen - 0 views

  •  
    "Recently, I've been exploring the new ASP.NET Web API. So far, I've been impressed with how easy it is to build RESTful web interfaces. In the examples I've published, none have been secure. In the real world - the world that exists beyond the world of samples and demos - security is a matter than cannot be brushed aside. In this post, I squarely tackle that issue by showing you an approach that locks down and secures your ASP.NET Web API."
Jacques Bosch

InfoQ: Architecting TekPub - Moving from ASP.NET MVC to Ruby on Rails - 3 views

  •  
    "TekPub is an interesting study in a company who started on ASP.NET MVC and quickly moved to Ruby on Rails. InfoQ had the opportunity to talk with Rob and James about TekPub and their journey from using ASP.NET MVC to Ruby on Rails."
  •  
    Quite a thought provoking interview for us .Net veterans.
Jacques Bosch

HTTP Message Handlers: The Official Microsoft ASP.NET Site - 1 views

  •  
    "ASP.NET Web API has a pipeline for processing HTTP messages on both the client and server. The client and server sides are designed to be symmetrical but independent; you can use each half by itself. Both sides are built on some common objects:"
Jacques Bosch

Walkthrough: Adding ASP.NET AJAX Scripting to an MVC Project - 1 views

  •  
    "This walkthrough shows how to get started with adding ASP.NET AJAX functionality to an ASP.NET MVC application. "
Jacques Bosch

Walkthrough: Using Forms Authentication in ASP.NET MVC - 0 views

  •  
    "Many Web applications require a way to restrict access to some resources (such as specific pages) so that those resources are accessible only to authenticated users. The default Web application project template for ASP.NET MVC provides a controller, data models, and views that you can use to add ASP.NET forms authentication to your application. The built-in functionality lets users register, log on and off, and change their password. For many applications, this functionality provides a sufficient level of user authentication."
Jacques Bosch

Bundling and Minification in ASP.NET 4.5 « Abhijit's World of .NET - 0 views

  •  
    "Optimizing application performance is a key element for business. There are several ways by which we can optimize the applications performance. It can be done either by server side code optimization, caching or some client side optimization. In this post I am going to discuss about one handy and smart way to optimize web applications performance using Bundling and Minification features which is introduced with ASP.NET 4.5 Developer Preview. ASP.NET 4.5 Developer Preview introduced bundling, which combines multiple JavaScript files for faster loading with less number of requests for download and minification, which reduces the size of JavaScript and CSS files by removing unneeded characters . Combination of these bundling and minification helps web pages to load very faster. Let's have a looks how it works."
Jacques Bosch

Getting Started with ASP.NET Membership, Profile and RoleManager | JohnnyCoder - 1 views

  •  
    "A new ASP.NET MVC project includes preconfigured Membership, Profile and RoleManager providers right out of the box. Try it yourself - create a ASP.NET MVC application, crack open the web.config file and have a look. "
Wicked Tunez

ASP.NET MVC 4 Beta issues workarounds - .NET Code Geeks - 0 views

  •  
    ASP.NET MVC 4 Beta and WebAPI
Jacques Bosch

Leon Cullens' Blog | Essential guide to ASP.NET MVC3 performance - 1 views

  •  
    "The .NET CLR can give your web application a significant performance boost compared to other platforms such as PHP due to it's compiled nature. Not only does your .NET code perform better because it's more low-level, it also comes with good support for parallel programming. This guide will not explain the basics of a responsive and fast web application by talking about CSS minifying, sprites, content delivery networks, etc. Instead this guide will be an essential guide for making sure you don't miss any features that can enhance the performance of your ASP.NET MVC3 application. "
Jacques Bosch

Implementing resource oriented controllers in ASP.NET MVC - Pablo M. Cibraro (aka Cibrax) - 2 views

  •  
    "One common problem with the naming convention and default routing mechanism in ASP.NET MVC is that we tend to group actions in a controller for sharing an URL space. This basically leads to complex controllers with a lot of unrelated methods that break the SOLID principles. Too many responsibilities in a simple class affects maintainability in the long run and causes secondary effects that complicates unit testing. For example, we usually end up with class constructors that receives too many dependencies as it is discussed here in SO."
1 - 20 of 140 Next › Last »
Showing 20 items per page