.NET news » Search results

Search results for query "orm" (111):

ASP.NET Best Practices for High Performance Applications

This article lists the techniques that you can use to maximize the performance of your ASP.NET applications. It provides common issues, design guidelines, and coding tips to build optimal and robust solutions.

High-Performance .NET Application Development & Architecture

This article demonstrates the art of creating and architecting high-performance and scalable .NET applications, covering all stages, from planning to development and their perspective best practices.

Encrypting Configuration Information in ASP.NET 2.0 Applications

When creating ASP.NET 2.0 applications, developers commonly store sensitive configuration information in the Web.config file. The cannonical example is database connection strings, but other sensitive information included in the Web.config file can include SMTP server connection information and user credentials, among others. While ASP.NET is configured, by default, to reject all HTTP requests to resources with the .config extension, the sensitive information in Web.config can be compromised if a hacker obtains access to your web server's file system. For example, perhaps you forgot to disallow anonymous FTP access to your website, thereby allowing a hacker to simply FTP in and download your Web.config file. Eep.

Fortunately ASP.NET 2.0 helps mitigate this problem by allowing selective portions of the Web.config file to be encrypted, such as the section, or some custom config section used by your application. Configuration sections can be easily encrypted using code or aspnet_regiis.exe, a command-line program. Once encrypted, the Web.config settings are safe from prying eyes. Furthermore, when retrieving encrypted congifuration settings programmatically in your ASP.NET pages, ASP.NET will automatically decrypt the encrypted sections its reading. In short, once the configuration information in encrypted, you don't need to write any further code or take any further action to use that encrypted data in your application.

In this article we'll see how to programmatically encrypt and decrypt portions of the configuration settings and look at using the aspnet_regiis.exe command-line program. We'll then evaluate the encryption options ASP.NET 2.0 offers. There's also a short discussion on how to encrypt configuration information in ASP.NET version 1.x.

Winning Forms: Practical Tips For Boosting The Performance Of Windows Forms Apps

This article discusses techniques you can use to ensure that Windows Forms-based apps provide optimal performance to match the rich UI responsiveness they're known to provide.
2006-02-13 23:01:31   Source: Winning Forms: Practical Tips For Boosting The...   Tags: Performance

How to write friendlier code for the Garbage Collector and to gain performance boost

Learn how to create objects in a way that diminishes the GC performance cost.

New Features in Visual Studio 2005 Windows Forms

Updated IDE features, new Menu, Toolstrip and multimedia controls, support for background threading, and a new deployment technology called ClickOnce aimed squarely at reducing the number of Web-based intranet applications are among the new capabilities in Visual Studio 2005.
2006-02-09 03:22:57   Source: New Features in Visual Studio 2005 Windows Forms   Tags: Visual Studio

Using custom attributes to add performance counters to your application

A brief overview of what performance counters are and a library that makes their use a bit easier.

Smart Clients: Craft A Rich UI For Your .NET App With Enhanced Windows Forms Support

Windows Forms 2.0 is far richer than any Windows application development platform that preceded it, with tons of improvements across the board. And they're all waiting for you when you create a new Windows Forms project.

Auto notify your team members with email, when performing Visual Source Safe operations.

A Visual Source Safe Addin written in VB with the help of which you can auto-email your team members about the operations (Add, Check in, check out...) you performed on VSS

Exceptions and Performance in .NET

Almost every time exceptions are mentioned in mailing lists and newsgroups, people say they're really expensive, and should be avoided in almost all situations. Jon Skeet examines the claim.
2006-01-19 12:49:00   Source: Exceptions and Performance in .NET   Tags: Performance