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

download

Creating an RSS Aggregator User Control in ASP.NET

This article demonstrates how to easily create an RSS feed aggregator an incorporate it into an ASP.NET application.
2 Mar 2006, 14:48:00   Source: Creating an RSS Aggregator User Control in ASP.NET   Tags: Examples ASP.NET

Install and Run Your ASP.NET Applications on Systems Without IIS

Learn how to install and run your ASP.NET applications on systems without IIS in three easy steps.
28 Feb 2006, 22:18:30   Source: Install and Run Your ASP.NET Applications on Systems...   Tags: ASP.NET Internet

Introduction to Anthem.NET

How to do AJAX without writing any JavaScript.
26 Feb 2006, 09:21:00   Source: Introduction to Anthem.NET   Tags: Ajax ASP.NET

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.