in

ASP.NET Weblogs

This Blog

Syndication

Tags

ASP.NET Deutsch Blogs

Browse by Tags

All Tags » ASP.NET 2.0 (RSS)
  • Top Ten ASP.NET Tips and Traps

    Scott Mitchell hat eine Liste der Top Ten ASP.NET Tips und Tücken bzw. Fallen aufgestellt: Caching TIP: Use SQL Cache Dependencies TIP: Use HttpContext.Items as a Per-Request Cache TRAP: Avoid a Common Caching Race Condition Performance TIP: Improve Paging Performance with Custom Paging TIP: Disable View State (Where Appropriate) to Reduce Page Bloat Client-Side TIP: Know the Client-Side Enhancements in ASP.NET 2.0 TRAP: Beware Broken Links and Images in Master Pages Design-Time TIP: Master Visual Studio 2005's Enhancements TIP: Use Reflector to Explore Framework Code TRAP: When Using Membership, Don't Forget to Set applicationName http://alexonasp.net Read More...
  • Microsoft Best Practices Analyzer

    Der Microsoft Best Practices Analyzer (BPA) ist ein Tool, mit dem die Konfigurationseinstellungen auf einem Rechner regelbasiert auf kritische oder ungünstige Einträge geprüft werden können. Durch eine Plug-In-Architektur ist es möglich, BPA selbst zu erweitern. Außerdem gibt es einen Update, der neue Regeln und Plug-Ins automatisch nachladen kann. Per Default bringt BPA ein Plug-In zur Überprüfung der Konfigurationsdateien von ASP.NET 2.0. Hierbei werden machine.config, Server-weit geltende web.config sowie Site-bezogene web.config Dateien geprüft. http://alexonasp.net Read More...
  • UrlRewritingNet.UrlRewrite

    UrlRewritingNet.UrlRewrite is an Open Source Component which allows you certainly to rewrite URLs with ASP.NET 2.0. UrlRewritingNet.UrlRewrite is based of " ASP.NET HTTP module for URL redirections " of Fabrice Marguerie , and was enhanced and improved by Thomas Bandt and Albert Weinert . Visit UrlRewritingNet http://alexonasp.net Read More...
  • Manage ASP.NET 2.0 Profiles with ease - Introducing FlimFlan ProfileView Control

    A few days ago I stumbled across Scott Guthrie 's blog posting " Cool ProfileView Control " where he promoted Joshua Flanagan's ProfileView ASP.NET 2.0 web control which allows logged in users to view and edit their (ASP.NET 2.0 Membership) Profiles. Since I didn't find a demo page or a screenshot of this pretty cool ASP.NET 2.0 control, I've compiled a small sample Application ( click here for download ) that shows ProfileView in action: Register your user with Profile Information using standard ASP.NET 2.0 controls Watch and modify your Profile with ProfileView after Login Watch your updated Profile in readonly mode of ProfileView To get the sample Project working, you have to setup a ASP.NET Membership and Profile enabled database and you...
  • DataFormatString property in ASP.NET 2.0 GridView does not work - the solution

    In order to get the DataFormatString Property in the ASP.NET 2.0 GridView working properly, you have to enter your DataFormatString and to disable the HtmlEncode Property , too. [update] if you want to know the reason for this behaviour, please take a look at the comments for this posting . http://alexonasp.net Read More...
  • Creating moderated user accounts using CreateUserWizard and ASP.NET 2.0 default providers

    Actually I'm developing an online shop where one of the software requirements is, that users can register themself - but their accounts will be disabled until they're proofed by an Admin. Since ASP.NET 2.0 Membership default providers don't provide a simple method for disabling an user's account, I solved it this way (without implementing my own Membership Provider): 1. Setup ASP.NET 2.0 Membership Database (or enhance existing database with Membership features): Run: aspnet_regsql.exe -E -S localhost -A mrp -d MyExistingDB which add's membership, role and profile tables, views and stored procedures to your database. 2. Add SqlMembershipProvider and SqlProfileProvider declaration to your web.config: <connectionStrings> <add name= "MyShopConnectionString...
More Posts