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

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 >
ASP.NET 3.5 Unleashed
Author: Stephen Walther
Average rating: 4.0 / 24
(24 reviews)
More .NET ASP.NET books
download
A Crash Course on ASP.NET Control Development: Template Properties
Dino Esposito continues his series on ASP.NET 2.0 controls development with this look at how to create template properties in a custom control.
28 Mar 2006, 19:45:37   Source: A Crash Course on ASP.NET Control Development: Template...   Tags: ASP.NET
DayPilot - Building an Outlook-Like Calendar Component for ASP.NET
A good-looking ASP.NET control that shows events visually arranged in a day calendar. Includes design-time support and data binding.
New version of AspLib component library
AspLib component library is solution that includes 25 different controls: grid, navigation and input controls; which let you considerably speed up development of web-application and get high-usability interface.
20 Mar 2006, 07:22:28   Source: New version of AspLib component library   Tags: Components ASP.NET
Secure File Download using Basic Authentication
Secure file download using basic authentication, the interesting part is that it maintains two separate entry points for uploading and downloading a file
19 Mar 2006, 12:57:00   Source: Secure File Download using Basic Authentication   Tags: ASP.NET Security
Top 10 Annotations and Remarks about the Wonderful and Powerful New Features in ASP.NET 2.0
This article discusses 10 features of ASP.NET 2.0 from a real-world perspective. It is not a core reference of classes and methods, but a user's guide with suggestions and trade-offs.
17 Mar 2006, 17:36:59   Source: Top 10 Annotations and Remarks about the Wonderful and...   Tags: ASP.NET
A comparison between ASP.NET 1.x and ASP.NET 2.0
This article explores a comparison chart between ASP.NET 1.x and ASP.NET 2.0.
17 Mar 2006, 16:08:00   Source: A comparison between ASP.NET 1.x and ASP.NET 2.0   Tags: ASP.NET
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
< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 >