|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
33 Articles match "ASP.Net","Module"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
Apply techniques for building real-world data-driven applications, including ASP.NET and WPF data binding. This module will also include a number of best practices, including avoidance of SQL injection by properly setting query parameters. In this module you'll learn to expose data to web clients as a REST-ful resource, addressable with URIs that clients can interact with using standard HTTP verbs, such as GET and POST. Appendices ASP.NET 3.5 We examine what new controls were added to ASP.NET 3.5 In this course, you learn to: Leverage new features of C# 3.0,
DevelopMentor Courses
- Friday, June 12, 2009
Essential ASP.NET
Understand the ASP.NET compilation engine Build pages using server-side controls, custom controls, and user controls Validate user input using validation controls Display and update data using declarative data binding Employ security to authenticate and authorize users of your application Use master pages and themes to create a consistent look and feel Manage data for the users of your application Use caching to improve performance Add AJAX features to your pages Essential ASP.NET explains how you can build browser-centric web applications using Microsoft's ASP.NET framework.
DevelopMentor Courses
- Friday, June 12, 2009
Virtual ASP.NET MVC
You'll get answers to these questions: What is ASP.NET MVC and how is it different than ASP.NET WebForms? Essential ASP.NET MVC is an examination of Microsoft's latest web development framework. MVC Introduction This module provides an introduction for the ASP.NET MVC framework. In this module we will examine how controllers are selected based upon routing information and how they are instantiated via a controller factory. Html and Url helpers MVC uses a template approach when rendering HTML to clients that's backed by the ASP.NET View Engine.
DevelopMentor Courses
- Thursday, May 27, 2010
|
17 Articles match "ASP.Net","Module"
|
The Latest from DevelopMentor
|
MORE
|
|
Beware of WIF HTTP Modules and Default Configuration
Most samples I know of – as well as FedUtil generated configuration set a preCondition="managedHandler" for the WIF HTTP modules. This means that the modules (and thus the protection of the requested resource) only kicks in for “managed” content like.aspx files. Also add the runAllManagedModulesForAllRequests attribute to the modules section in system.webServer if you are using ASP.NET URL Authorization. Not for static content like.xml etc. If you like to protect static content using WIF, you have to remove the preCondition in web.config. Subtle security hole….
www.leastprivilege.com
- Thursday, December 24, 2009
Error Logging Modules and Handlers for ASP.NET (MVC)
I am working on a new ASP.NET MVC app and like so many other applications out there I need to log any errors should they occur. recently I heard about ELMAH Error Logging Modules and Handlers for ASP.NET through this blog post of Scott Hanselman. Starting from scratch it took me less that 2 hours to download and integrate it into my current ASP.NET MVC application and log all errors to SQL Server. So as using en existing and proven solution is always better that reinventing the wheel I decided to try ELMAH and see how easy it is to get started. Enjoy!
The Problem Solver
- Thursday, August 13, 2009
Claims Authorization in WIF Beta 2 – ASP.NET and WCF Integration
In addition to using the claims authorization manager manually like I showed you in the last post, you can also opt-in to per-request claims authorization (think of it as a replacement for the “classic” URL authorization module in ASP.NET / IIS). For this purpose you’ll find an HTTP module called ClaimsAuthorizationModule in the Microsoft.IdentityModel.Web namespace. This module simply subscribes to the AuthorizeRequest processing stage and calls the configured claims authorization manager for every request. Tags: WCF;ASP.NET;IdentityModel ASP.NET.
www.leastprivilege.com
- Tuesday, July 21, 2009
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Error Logging Modules and Handlers for ASP.NET (MVC)
I am working on a new ASP.NET MVC app and like so many other applications out there I need to log any errors should they occur. recently I heard about ELMAH Error Logging Modules and Handlers for ASP.NET through this blog post of Scott Hanselman. Starting from scratch it took me less that 2 hours to download and integrate it into my current ASP.NET MVC application and log all errors to SQL Server. So as using en existing and proven solution is always better that reinventing the wheel I decided to try ELMAH and see how easy it is to get started. Enjoy!
The Problem Solver
- Thursday, August 13, 2009
-
Geneva HTTP Modules: ClaimsPrincipalHttpModule
Geneva ships with three HTTP modules to use with ASP.NET: ClaimsPrincipalHttpModule , SessionAuthenticationModule and WSFederationAuthenticationModule. The claims principal module is your easiest entry into the claims-based world. Tags: ASP.NET;IdentityModel What are they for – and when to chose which? In this post I will focus on the simplest one of the three: ClaimsPrincipalHttpModule – in following post we will have a close look at the remaining two. It simply takes whatever identity is on HttpContext.User and turns that into an IClaimsPrincipal. Lovely.
www.leastprivilege.com
- Monday, November 17, 2008
-
ASP.NET Security Goodness
A bunch of (ASP.NET) security tools got released over the weekend – highly recommended! The engine works by reading the target assembly and all reference assemblies used in the application -- module-by-module -- and then analyzing all of the methods contained within each. is an encoding library designed to help developers protect their ASP.NET web-based applications from XSS attacks. AntiCSRF makes it easier for ASP.NET developers to guard themselves against Cross Site Request Forgery. Tags: ASP.NET;FX Security Get more info from Mark and Barry.
www.leastprivilege.com
- Monday, December 15, 2008
-
ASP.NET Routing in Windows Azure Using WebForms
I'm a huge fan of ASP.NET Routing. It gained popularity as the part of ASP.NET MVC which channels requests for a given URL to the right controller action. In a wise move, Microsoft moved the routing infrastructure out of ASP.NET MVC and into its own assembly with the release of.NET 3.5 With ASP.NET Routing you can construct search engine optimized and human friendly URLs such as these: [link]. This is well documented in the ASP.NET MVC world running on your server - you can't get anything done without it in MVC. What if you don't want ASP.NET MVC?
-
Use Geneva Session Management for your own needs
closer look reveals, that the purpose of this module is actually serializing SessionSecurityToken s into cookies. This means that the SessionAuthenticationModule is a general module and API to serialize claims principals and security tokens into cookies. First use the Visual Studio Geneva templates to create a simple “Claims-aware ASP.Net WebSite”. The module will then reconstruct the IClaimsPrincipal on subsequest requests and set it as the current principal for the ASP.NET application. Geneva Framework is a Framework is a Framework. Where can this be useful?
www.leastprivilege.com
- Sunday, May 24, 2009
-
Using IdentityModel: Adding Claims Support to ASP.NET (Spoiler)
Write an HTTP module that creates the AuthorizationContext , wraps it in the IPrincipal and puts it on Thread.CurrentPrincipal and Context.User. Tags: ASP.NET;IdentityModel Many people asked me how to use claims based authorization in ASP.NET. While I have it working here on my machine (hey - it works on my machine!), I still need to polish the bits before I can release them. For those who want to get their hands dirty immediately - here's what you'd have to do: Write an IPrincipal implementation that wraps an AuthorizationContext. Bear with me.
www.leastprivilege.com
- Tuesday, March 18, 2008
-
Geneva integration into ASP.NET
Geneva is integrated in ASP.NET/IIS using the standard IHttpModule extensibility mechanism. Geneva ships with three HTTP modules: ClaimsPrincipalHttpModule (already wrote about it here ). Now let’s have a close look what the two derived module do. As stated earlier, this module deals with WS-Federation redirects and token parsing. After the module implementing the authentication protocol has done its job, the base class creates a session token. The session authentication module uses this cookie to re-create the IClaimsPrincipal on each request.
www.leastprivilege.com
- Thursday, March 12, 2009
|
|
|