.NET news » ASP.NET ASP.NET Rss Feed

Professional ASP.NET 3.5: In C# and VB (Programmer to Programmer)
Authors: Bill Evjen, Scott Hanselman, Devin Rader
Average rating: 4.0 / 26
(26 reviews)
More .NET ASP.NET books
download
ASP.NET 2.0 Localization - using Visual Studio 2005
This article provides a step-by-step introduction on Localization in ASP.NET 2.0 using the Visual Studio 2005.
AspLib Tooltip
The AspLib ToolTip is an easy-to-use, professional on-line context help tool for ASP.NET applications that allows developers to easily add in-page help for end-users. The end user just sees an image or text and they see pop-up or window context help that explains a page element. The tips can localize themselves automatically using application culture settings. The built in ToolTip editor allows to create and edit helps easily. The ToolTip uses AJAX technology and help tips are displayed without the need to load anything from the server.
21 Feb 2006, 04:36:13   Source: AspLib Tooltip   Tags: Components ASP.NET Ajax
ASP.NET Webservices: The request failed with HTTP status 401: Access Denied error
You may receive the error: The request failed with HTTP status 401: Access Denied when trying to access a Webservice from your ASP.NET Application. This article discusses on the resolution for the same.
WebResource ASP.NET 2.0 explained
WebResource (rumours and lies exposed): this is how you really do it.
18 Feb 2006, 09:27:00   Source: WebResource ASP.NET 2.0 explained   Tags: ASP.NET Examples
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.
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.

14 Feb 2006, 18:00:00   Source: Encrypting Configuration Information in ASP.NET 2.0...   Tags: ASP.NET Security
Make Your ASP.NET Applications Talk with Text-to-Speech
Silence may be golden, but increasingly, applications, appliances, and other automated systems are acquiring the ability to speak. You can take advantage of text-to-speech technology to voice-enable your .NET applications.
Looking at Themes and Skins
In this screencast available here we take a look at one of the new features of ASP 2.0 called Themes and Skins. A theme is a collection of property settings that allow a Web page to define a common look and for pages and controls. Themes are made up of elements: skins, Cascading Style Sheets (CSS), images and other defined resources.
View Looking at Themes and Skins
6 Feb 2006, 05:36:00   Source: Looking at Themes and Skins   Tags: ASP.NET GUI
New features for web developers in ASP.NET 2.0
ASP.NET 2.0 brings enhanced performance and many new features that make the web developer's life easier. Alex Homer takes you through what's new.
3 Feb 2006, 06:25:00   Source: New features for web developers in ASP.NET 2.0   Tags: ASP.NET
Compress your ASP.NET 2.0 pages
An article on how to zip the output stream of an ASP.NET page.
1 Feb 2006, 22:46:00   Source: Compress your ASP.NET 2.0 pages   Tags: ASP.NET Examples