|
|
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.
|
35 Articles match "ASP.Net"
|
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. 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, Learn to combine flavors of LINQ to query and transform in-memory collections, XML data sources, and relational databases. Learn to develop applications for EF and LINQ to Entities and employ ADO.NET Data Services to integrate data from the Internet cloud. How is LINQ to Entities different from LINQ to SQL? WPF Data Binding.NET 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
SharePoint for Developers (WSSv3/MOSS2007)
This allows us to leverage ASP.NET forms-based authentication. With the new web part features in ASP.NET 2.0, SharePoint developers can now program against a common framework for both custom ASP.NET 2.0 The technologies covered will each be deployed utilizing the new feature and solution framework in WSS. You'll get answers to these questions: How do I understand the page-processing and request-processing framework? How can I build custom lists, pages, master pages, web parts, event handlers, content types and more? How do I connect to the object model? intranet? extranet?
DevelopMentor Courses
- Friday, June 12, 2009
|
145 Articles match "ASP.Net"
|
The Latest from DevelopMentor
|
MORE
|
|
Moving StarterSTS to the (Azure) Cloud
Authentication, roles and claims generation is based on the standard ASP.NET provider infrastructure. In my case I simply moved the ASP.NET provider database to SQL Azure and still use the standard SQL Server based membership, roles and profile provider. In farm scenarios, the standard APIs like ASP.NET’s Request.Url return the current (internal) machine name, but you typically need the address of the external facing load balancer. The default implementation uses the ASP.NET web cache and can be easily extended to use products like memcached or AppFabric Caching.
www.leastprivilege.com
- Wednesday, August 11, 2010
WIF, ASP.NET 4.0 and Request Validation
Since the response of a WS-Federation sign-in request contains XML, the ASP.NET built-in request validation will trigger an exception. Starting with ASP.NET 4.0 To solve this, request validation needs to be turned off for pages receiving such a response message. you can plug in your own request validation logic. This allows letting WS-Federation messages through, while applying all standard request validation to all other requests. The WIF SDK (v4) contains a sample validator that does exactly that: public class WSFedRequestValidator : RequestValidator. {. WSFederationConstants.
www.leastprivilege.com
- Saturday, July 24, 2010
Quickly determine the windows identity of an ASP.NET site
Great tip from Dominick to quickly determine the use an ASP.NET, WCF or WF4 service is running under. Tags: NET Workflow WCF WF4 ASP.NET VS2010 Add the following ASPX file and hit it with the browser. Thanks to Dominick. www.TheProblemSolver.nl. Wiki.WindowsWorkflowFoundation.eu.
The Problem Solver
- Tuesday, May 25, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
WF and ASP.NET - A Few Gotchas
ASP.NET as WF host is an important and useful scenario for WF adoption, but there are some interesting details that are worth understanding before you tackle this yourself. This means that WF can be hosted in a single-threaded console or WinForms app, and also can scale up to be hosted inside ASP.NET, with all of its multithreaded goodness (thankfully hidden under the covers from the average web developer). ASP.NET uses the.NET ThreadPool to dispatch request processing. What we need is a way to re-use the ASP.NET thread to also execute the workflow. final note.
There Must Be Some Mistake
- Monday, October 1, 2007
-
ASP.NET Security Goodness
A bunch of (ASP.NET) security tools got released over the weekend – highly recommended! 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. 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, J#) application you are developing. 32 Bit / 64 Bit.
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?
-
Jason’s AJAX Component Library
I’ve been really busy recently working on some extender controls for ASP.NET AJAX. I’m assuming you have Visual Studio 2005 and ASP.NET AJAX installed, of course. Tags: ASP.NET AJAX Jacl [Update: This release won't build if you extracted it to a folder with spaces in the path. You might want to get Release 2 instead.]. My current employer was kind enough to let me release the extenders I’ve been working on for them as part of an open source project. So here is the first release of Jason’s AJAX Component Library. ResizeColumnsExtender.
Jason Diamond
- Monday, June 4, 2007
-
Get help running a partial SSL website in ASP.NET
A while ago I wrote this article about some of the things to watch out for when securing parts of an application with SSL. Keith used the attached code as part of his work and extended it. Even better he made his extensions available for download – I recommend to have a look. Thanks for sharing, Keith! Read his post here.
www.leastprivilege.com
- Sunday, January 18, 2009
-
MongoDB vs. SQL Server 2008 Performance Showdown
Articles ASP.NET NoSQL Open Source web2.0This article is a follow up one I wrote last week entitled “The NoSQL Movement, LINQ, and MongoDB - Oh My!”. In that article I introduced the NoSQL movement, MongoDB, and showed you how to program against it in.NET using LINQ and NoRM. highlighted two cornerstone reasons why you might ditch your SQL Server for the NoSQL world of MongoDB. Those were. Ease-of-use and deployment. Performance. For ease-of-use, you’ll have to want to read the original article. But first, here’s a new twist on an old proverb: “Data is money”. money) to burn. Your Turn.
Michael C. Kennedy's Weblog
- Thursday, April 29, 2010
-
Verifying JavaScript with JSLint and Visual Studio
I’ve turned that option on by default, but it shouldn’t hurt you if you’re not using ASP.NET AJAX. quick tip for ASP.NET AJAX users: If you register your own namespaces using Type.registerNamespace , you’ll get many errors telling you that your namespace is undefined. Tags: ASP.NET JavaScript Visual Studio Douglas Crockford’s JavaScript: The Good Parts is a short, but informative read that all JavaScript developers should probably pick up. finally decided to make this an almost instantaneous process. It’s too simple, though.
Jason Diamond
- Saturday, August 9, 2008
|
|
|