Official Site Blog for ASPNETWorld.com
| | Sun | Mon | Tue | Wed | Thu | Fri | Sat |
|---|
| 27 | 28 | 29 | 30 | 1 | 2 | 3 | | 4 | 5 | 6 | 7 | 8 | 9 | 10 | | 11 | 12 | 13 | 14 | 15 | 16 | 17 | | 18 | 19 | 20 | 21 | 22 | 23 | 24 | | 25 | 26 | 27 | 28 | 29 | 30 | 31 | | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
Search
Links
Categories
Blogroll
|

Thursday, December 08, 2005
New Web Project Model Option Coming for VS 2005
Scott Guthrie revealed that a new web project model option (tentatively called "ASP.NET Web Projects") for Visual Studio 2005 will be available for download in the next few weeks.
"The goal with this new project-option is to address some of the feedback we’ve heard from people who are finding migrating existing apps to the new web-site project model in VS 2005 more work than they’d like to-do (especially because of the new web site build semantics of compiling a web project into multiple assemblies). The new project-type will also help enable some scenarios that web-site projects don’t handle as well today (for example: around sub-web projects where the sub-project isn’t an app in the ASP.NET/IIS sense, but rather feeds its generated assembly to a parent app’s \bin directory to run). It also provides a model that will feel very familiar/identical for people who don’t want to change how they structure their web projects from VS 2003 today (for example: using a project file, etc)." - ScottGu
This is certainly welcome news for some web developers out there. To find out technical information on the new project option and release plans, check out ScottGu's blog post.

Wednesday, December 07, 2005

Monday, December 05, 2005
Get ASP.NET Headlines Here!
Starting today, the latest ASPNETWorld.com Blog headlines will be featured on the front page of the main site of ASPNETWorld.com.
About the Blog
This blog features current ASP.NET-related news and development tips from the ASP.NET developer community. If you have relevant news items or useful tips or links that you would like to share with the rest of the ASP.NET community, please send them here.
RSS Feed: http://www.aspnetworld.com/blog/SyndicationService.asmx/GetRss
Happy reading!
P.S. Help spread the word about this blog!

Saturday, December 03, 2005
Turning an ascx User Control into a Redistributable Custom Control in ASP.NET 2.0 and VS 2005
Writing custom controls in ASP.NET 1.x requires a lot of development expertise. In ASP.NET 2.0, you can create custom controls from ascx user controls. Neat! David Ebbo tells how this is done.
The basic steps to make this happen are as follows:
- Write your User Control as you normally would, typically using the Visual Studio 2005 designer. The main restriction is that the user control needs to be self-contained.
- Test it using a simple page before trying to deploy it.
- Deploy the app to precompile it.
- Grab the user control's assembly produced by the deployment step, and you're essentially done: you have your Custom Control.
- Finally, use your Custom Control in other apps the same way as you always use Custom Control's.
Read David Ebbo's full article.
ASP.NET and Firefox 1.5
With the recent release of Firefox 1.5, there's yet another version of Firefox for ASP.NET web developers to test out against.
Based on the Gecko 1.8 engine, Firefox 1.5 features improved support for CSS 2 and CSS3 as well as many DHTML, JavaScript, and DOM enhancements. Feel free to leave comments on browser render-testing results with ASP.NET.
Firefox 1.5 is available for download below:
Workaround for VS 2005 Intellisense Issue in Web.config
Last month, Tim Heuer blogged about an issue in Visual Web Developer 2005 / VS 2005 in that Intellisense stops working for the Web.config file after using the ASP.NET Web Site Administration Tool (WSAT). This is purely an Intellisense issue as the ASP.NET application will still run normally.
Here's the workaround:
Just remove the xmlns attribute (which was added by WSAT) of the Web.config <configuration> node to get Intellisense back.
Scott Guthrie has a post on this workaround too.
This Intellisense issue is also being tracked at MSDN Product Feedback Center.

Friday, December 02, 2005
ASP.NET 2.0 Security FAQs / Wiki Released on Channel 9
Check out the new ASP.NET 2.0 Security FAQs on Channel 9 at MSDN. It's in Wiki form i.e. besides reading the FAQs, you can also contribute towards the content.
Here's a sample of the frequently-asked questions:
- How do I enforce strong passwords using membership feature in ASP.NET 2.0?
- How do I use Role Authorization in ASP.NET 2.0?
- What all security events do health monitoring feature logs by default?
- How do I encrypt sensitive data in machine.config or web.config file?
- How should I prevent someone from disassembling code?
- ...and lots more!
This is highly recommended stuff for anyone seeking security guidance in ASP.NET 2.0 application development.

Tuesday, November 29, 2005
New NPersist and ObjectMapper Released
Matssoft ObjectMapper and NPersist has moved to www.puzzleframework.com (Puzzle.NET). Puzzle.NET is a free, open source collection of tools and frameworks for Agile, Domain Driven Design and Development written by Roger Johansson and Mats Helander.
Puzzle.NET currently consists of the following 5 frameworks:
NPersist – Object/Relational Mapping
NAspect – Aspect Oriented Programming
NFactory – Dependency Injection
NPath – In-Memory Object Querying
NCore – Compression, Parsing, etc (core functionality reused by the other frameworks)
In addition, Puzzle.NET currently contains the following 3 tools:
ObjectMapper – GUI Editor for Persistent Domain Models
DomainExplorer – Persistent Domain Model Object Browser
QueryAnalyzer – NPath Test Bench
Read Mats' post on this release.

Sunday, November 27, 2005
Regex Kit: Regular Expression Visualizers for Visual Studio 2005
Roy Osherove has released Regex Debug Visualizers for Visual Studio 2005. This is really a nice addition to the built-in debug visualizers in VS 2005.
The regular expression visualizers support "visualizing" the following .NET types:
System.String
System.Text.RegularExpressions.Regex
System.Text.RegularExpressions.Match
System.Text.RegularExpressions.MatchCollection
Read Roy's post on this version 1 release and go download the kit!