|
|
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.
|
20 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. In this course, you learn to: Leverage new features of C# 3.0, including extension methods and lambda expressions Use LINQ to filter, sort, and group in-memory
DevelopMentor Courses
- Friday, June 12, 2009
SharePoint for Developers (WSSv3/MOSS2007)
We create complete custom-branded sites using master pages and themes, and learn to deploy them using the feature framework discussed in the previous module. This allows us to leverage ASP.NET forms-based authentication. With the new web part features in ASP.NET 2.0, Utilize the WSS object model for building applications in SharePoint Build custom workflow solutions for SharePoint Create custom event handlers Use features and solutions for deploying projects for WSS and MOSS Build standard web parts and web parts utilizing AJAX Handle custom authentication solutions Implement best practices for building solutions with WSS and MOSS Leverage the Business Data Catalog Create custom lists that use custom content types Essential SharePoint for Developers (WSSv3/MOSS2007) covers the critical building blocks for developing solutions for both Windows SharePoint Services
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
|
17 Articles match "ASP.Net","Module"
|
The Latest from DevelopMentor
|
MORE
|
|
Beware of WIF HTTP Modules and Default Configuration
the WIF HTTP modules.
This This means that the modules (and thus the protection of the requested resource) only
kicks Also add the runAllManagedModulesForAllRequests attribute to the modules section
in in system.webServer if you are using ASP.NET URL Authorization. Most samples I know of – as well as FedUtil generated configuration set a preCondition="managedHandler" for
the kicks in for “managed” content like .aspx
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. 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. Well I can only say I am positively That is including security so not everyone can check the error log. There are lots of additional capabilities I haven’t looked at yet like setting up an RSS feed, emailing or even tweeting errors messages.
The Problem Solver
- Thursday, August 13, 2009
Claims Authorization in WIF Beta 2 – ASP.NET and WCF Integration
integrated in WCF and ASP.NET.
ASP.NET
as a replacement for the “classic” URL authorization module in ASP.NET / IIS). this purpose you’ll find an HTTP module called ClaimsAuthorizationModule in
This module simply subscribes to the AuthorizeRequest processing stage and
In the previous post
I illustrated how the basic claims authorization infrastructure in WIF (formerly Geneva)
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. 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. Well I can only say I am positively That is including security so not everyone can check the error log. There are lots of additional capabilities I haven’t looked at yet like setting up an RSS feed, emailing or even tweeting errors messages.
The Problem Solver
- Thursday, August 13, 2009
-
ASP.NET Security Goodness
A bunch of (ASP.NET) security tools got released over the weekend – highly recommended!
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.
library designed to help developers protect their ASP.NET web-based applications from
Get more info from Mark and Barry .
CAT.NET V1 CTP
“CAT.NET is a snap-in to the Visual Studio IDE that helps you identify security flaws
within a managed code (C#, Visual Basic .NET,
www.leastprivilege.com
- Monday, December 15, 2008
-
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;IdentityMode What are they for – and when to chose which?
In this post I will focus on the simplest one of the three: ClaimsPrincipalHttpModule –
www.leastprivilege.com
- Monday, November 17, 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 wise move, Microsoft moved the routing infrastructure out of ASP.NET
MVC With ASP.NET Routing you can construct search engine optimized and human friendly
URLs This is MVC which channels requests for a given URL to the right controller action. In
a
-
Use Geneva Session Management for your own needs
A closer look reveals, that the purpose of this module is actually serializing SessionSecurityToken s
This means that the SessionAuthenticationModule is a general module and API
First use the Visual Studio Geneva templates to create a simple “Claims-aware ASP.Net
Geneva Framework is a Framework is a Framework.
One part of that framework is the SessionAuthenticationModule for ASP.NET.
www.leastprivilege.com
- Sunday, May 24, 2009
-
Using IdentityModel: Adding Claims Support to ASP.NET (Spoiler)
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
Write an HTTP module that creates the AuthorizationContext , wraps it in the IPrincipal and
puts it on Thread.CurrentPrincipal and Context.User .
If you need compatibility with the existing URL authorization infrastructure, define
a role claim type that should be checked by IPrincipal.IsInRole
For more functionality, pages would grab the principal from
www.leastprivilege.com
- Tuesday, March 18, 2008
-
Claims Authorization in WIF Beta 2 – ASP.NET and WCF Integration
integrated in WCF and ASP.NET.
ASP.NET
as a replacement for the “classic” URL authorization module in ASP.NET / IIS). this purpose you’ll find an HTTP module called ClaimsAuthorizationModule in
This module simply subscribes to the AuthorizeRequest processing stage and
In the previous post
I illustrated how the basic claims authorization infrastructure in WIF (formerly Geneva)
www.leastprivilege.com
- Tuesday, July 21, 2009
|
|
|