.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 >
Pro ASP.NET 3.5 in C# 2008, Second Edition (Windows.Net)
Authors: Matthew MacDonald, Mario Szpuszta
Average rating: 4.5 / 19
(19 reviews)
More .NET ASP.NET books
download
Compilation and Deployment in ASP.NET 2.0
It's crucial to understand how your ASP.NET code compiles in order to debug your Web applications effectively. ASP.NET 2.0 has changed the way compilation and deployment works, and in this article I'll dig in and show you how compilation works now and what has changed from ASP.NET 1.x.
17 Aug 2006, 19:00:00   Source: Compilation and Deployment in ASP.NET 2.0   Tags: ASP.NET
Web Control Templates Explained
Programming for extensibility assures ease of maintainability in your design. Control templates offer this functionality to custom Web controls.
14 Aug 2006, 20:34:40   Source: Web Control Templates Explained   Tags: ASP.NET
3-tier Architecture with ASP.NET 2.0: Tutorial 4: Displaying Data With the ObjectDataSource (Visual Basic)
Accessing and displaying data from a Business Logic Layer can be accomplished without writing a line of code thanks to ASP.NET 2.0's ObjectDataSource control. The ObjectDataSource invokes a specified method of a class and returns the results.
10 Aug 2006, 16:35:32   Source: 3-tier Architecture with ASP.NET 2.0: Tutorial 4:...   Tags: ASP.NET VB.NET
3-tier Architecture with ASP.NET 2.0: Tutorial 4: Displaying Data With the ObjectDataSource (Visual C#)
Accessing and displaying data from a Business Logic Layer can be accomplished without writing a line of code thanks to ASP.NET 2.0's ObjectDataSource control. The ObjectDataSource invokes a specified method of a class and returns the results.
10 Aug 2006, 16:12:22   Source: 3-tier Architecture with ASP.NET 2.0: Tutorial 4:...   Tags: ASP.NET C#
Accessing Embedded Resources through a URL using WebResource.axd

Many of the built-in ASP.NET server controls require additional, external resources in order to function properly. For example, when using any of the ASP.NET validation controls, the controls rely on a bevy of JavaScript functions to perform their client-side validation. While each validation control could emit such script directly into the page's content, a more efficient approach would be to package these JavaScript functions into an external JavaScript file and then include that file in the page using <script src="PathToExternalJavaScriptFile" type="text/javascript" >. This would reduce the total page size and would allow the browser to cache the external JavaScript file (rather than having to send the JavaScript code down to the browser on each and every page visit/postback).

Prior to ASP.NET 2.0, such external resources that needed to be accessible to the visitor's browser had to be implemented as actual files on the file system. If you've worked with ASP.NET 1.x's validation controls, your pages have included a reference to a JavaScript file /aspnet_client/system_web/version/WebUIValidation.js and there is an actual file with that name residing in the web application's root. Such external resources hamper deployment - if you deploy your application from the testing server to production, it's imperative that the production server have the same external resources (WebUIValidation.js, in this case), in the same locations in the file system.

To remedy this, ASP.NET 2.0 allows for external resources to be embedded within the control's assembly and then be accessed through a specified URL. With the external images, JavaScript files, CSS files embedded in the control's assembly, deployment is a breeze, as all of the resources are now contained within the assembly (the .dll file). There are no external resources whose file names and location on the file system must map up. Once embedded into the assembly, these resources can be accessed from an ASP.NET 2.0 web page through a special URL (WebResource.axd)..

8 Aug 2006, 19:00:00   Source: Accessing Embedded Resources through a URL using...   Tags: ASP.NET
Report Task Progress with ASP.NET 2.0
The progress bar is great for keeping users informed about the progress of a task. Unfortunately, there's no progress bar element built into ASP.NET, so Dino Esposito solves that problem with his ProgressPanel control.
7 Aug 2006, 17:26:59   Source: Report Task Progress with ASP.NET 2.0   Tags: ASP.NET Examples Ajax
Build Smarter ASP.NET File Downloading Into Your Web Applications
In this article, Joe Stagner presents some solutions for downloading files from ASP.NET sites so your users will have a fast, secure, and error-free downloading experience.
7 Aug 2006, 15:54:10   Source: Build Smarter ASP.NET File Downloading Into Your Web...   Tags: ASP.NET
3-tier Architecture with ASP.NET 2.0: Tutorial 3: Master Pages and Site Navigation (Visual C#)
With the site map defined and the master page complete, we now have a consistent page layout and navigation scheme for our data-related tutorials. Now updating the site-wide page layout or site navigation information is a quick and simple process.
7 Aug 2006, 14:42:51   Source: 3-tier Architecture with ASP.NET 2.0: Tutorial 3: Master...   Tags: ASP.NET C#
3-tier Architecture with ASP.NET 2.0: Tutorial 3: Master Pages and Site Navigation (Visual Basic)
With the site map defined and the master page complete, we now have a consistent page layout and navigation scheme for our data-related tutorials. Now updating the site-wide page layout or site navigation information is a quick and simple process.
ASP.NET 2.0 Performance Tuning Considerations
ASP.NET 2.0 has a lot of performance enhancements. In addition this article discusses on certain techniques which can improve the performance of applications.
4 Aug 2006, 06:14:36   Source: ASP.NET 2.0 Performance Tuning Considerations   Tags: ASP.NET Performance
< 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 >