.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
Search Engine Optimization (SEO) and ASP.NET Developers
In this article we're going to cover some basic concepts on what you can do in order to make your ASP.NET application as spider and search engine friendly as possible.
16 Mar 2006, 08:11:13   Source: Search Engine Optimization (SEO) and ASP.NET Developers   Tags: ASP.NET
Switching Between HTTP and HTTPS Automatically: Version 2
An article on automatically switching between HTTP and HTTPS protocols without hard-coding absolute URLs.
Custom Paging in ASP.NET 2.0 with SQL Server 2005
A common pattern in web development is providing paged access to data. Rather than displaying the entire contents of a report or database table to an end user, developers often show only a subset of records per web page, with controls for moving from page to page. With ASP.NET 1.x, the DataGrid made paging incredibly simple - just set the AllowPaging property to True and add a few lines of code in the PageIndexChanged event handler and you were done! ASP.NET 2.0's GridView makes the process even simpler - just check the Enable Paging option from the GridView's smart tag - no code needed.

Of course nothing is free in life, and the tradeoff you make with the ease of checking a checkbox to enable paging (or, in the DataGrid's case, writing a couple lines of code) is performance. Out of the box, the DataGrid and GridView use default paging, which is a simple paging model that returns all of the records for each every page of data shown. When paging through small amounts of data (dozens to a hundred or so records), this inefficiency is likely outweighed by the ease of adding the feature. However, if you want to page through thousands, tens of thousands, or hundreds of thousands of records the default paging model is not viable.

The alternative to default paging is custom paging, in which you are tasked with writing code that intelligently grabs the correct subset of data. It requires a bit more work, but is essential when dealing with sufficiently-sized data...

14 Mar 2006, 18:00:00   Source: Custom Paging in ASP.NET 2.0 with SQL Server 2005   Tags: ASP.NET Database
Passing Information Securely Between ASP and ASP.NET
Many classic ASP applications exist side-by-side with newer ASP.NET applications, sometimes leading to a need to transfer or share information between the two. This article shows one method of transferring such information securely.
10 Mar 2006, 15:09:50   Source: Passing Information Securely Between ASP and ASP.NET   Tags: ASP.NET Security
A CAPTCHA Control for ASP.NET 2
A CAPTCHA control that is simple, secure and easy to use.
9 Mar 2006, 07:32:00   Source: A CAPTCHA Control for ASP.NET 2   Tags: ASP.NET Components Security
Extreme ASP.NET: A New Solution to an Old State Storage Problem
Extreme ASP.NET: A New Solution to an Old State Storage Problem
8 Mar 2006, 18:00:00   Source: Extreme ASP.NET: A New Solution to an Old State Storage...   Tags: ASP.NET
RapidSpell Web .NET v3.2 released
Keyoti has released RapidSpell Web .NET v3, an asp.net spell checker control providing Dialog and as-you-type style spell checking to your web sites.
7 Mar 2006, 18:00:00   Source: RapidSpell Web .NET v3.2 released   Tags: Components ASP.NET
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