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

Pro ASP.NET 3.5 in C# 2008, Second Edition (Windows.Net)
Authors: Matthew MacDonald, Mario Szpuszta
Average rating: 4.5 / 17
(17 reviews)
More .NET ASP.NET books
download
Slink Framework - Strongly Typed URLs for ASP.NET
Slink is a code generating framework that generates type safe URLs for ASP.NET. With Slink URLs, you increase code quality, increase maintainability, and get compile time checking of your URLs in all your ASPX pages (code-behind and non-codebehind).
4 Sep 2007, 12:18:00   Source: Slink Framework - Strongly Typed URLs for ASP.NET   Tags: ASP.NET
Making Script.aculo.us Drag & Drop and ASP.NET play nicely!
Step By Step Instructions on how to Drag & Drop with the Script.aculo.us library in ASP.NET
2 Sep 2007, 00:18:00   Source: Making Script.aculo.us Drag & Drop and ASP.NET play nicely!   Tags: ASP.NET
How to create an HTML Editor for ASP.NET AJAX

Most blog, forum and Wiki applications use an HTML editor as the primary authoring tool for site content. With this type of control, an online user can create and edit an HTML document. The user is able to modify the text  — including its format, fonts and colors  — as well as add links and images. Often, the user may also view and/or edit the HTML source.

Microsoft AJAX (ASP.NET AJAX Extensions) introduces a new implementation model for server controls with related script. This article discusses how to create an HTML editor server control specifically for the Microsoft AJAX environment.

31 Aug 2007, 14:53:00   Source: How to create an HTML Editor for ASP.NET AJAX   Tags: Ajax ASP.NET
Caching Data with a Web Service in Enterprise Library

The Caching Application Block's provider mechanism lets you create a custom provider that stores cached data anywhere you want. It was this that made me wonder if it was possible to cache data within or through a web service, which would allow the provider to cache its data almost anywhere—remotely or locally—without having to write specific code that is directly integrated within Enterprise Library.

The principle is simple enough. Instead of having the backing store provider within the Caching Application Block interact directly with the backing store (the usual approach, as implemented in the Isolated Storage provider and Database provider), the backing store provider simply packages up the data and sends it to a web service..

Creating Web Sites with ASP.NET 2.0
"Web application development has come a long way in a fairly short period of time." A quote like that surely won't send anyone into shock anytime soon because it's accepted as fact. From basic, static HTML pages to totally data-driven and data-centric Web applications, the demands on a Web developer are much more complex and demanding than they were just a few years ago. The advent of social networking sites like MySpace, which is written in ASP.NET 2.0, interactive mapping sites, and sites streaming full motion video has required the Web developer to adapt and change with the times. One of the best tools to use to build these types of Web applications is Microsoft's ASP.NET 2.0. In this article I am going to delve into some of the more interesting features of ASP.NET 2.0 and show you how you can begin using ASP.NET 2.0 on your next Web project.
26 Aug 2007, 19:00:00   Source: Creating Web Sites with ASP.NET 2.0   Tags: ASP.NET
Make your web application run faster

It is easy to develop your own ASP.NET web application. But making it do some useful things for your users while keeping the design simple and elegant is not so easy. If you are lucky, your web application will be used by more than a handful of users, in that case, performance can become important. For some of the web applications I worked on, performance is vital: the company will lose money if users get frustrated with the slow response.

There are many factors that can result in bad performance, the number of users is just one of them. As a developer in a big corporation, you usually don't have a chance to mess with real production servers. However, I think it is very helpful for developers to take a look at the servers that are hosting their applications...

6 Aug 2007, 08:11:00   Source: Make your web application run faster   Tags: ASP.NET Performance
GridView Sort Indicator Component

This article presents a component that is used to add a sort indication image to GridView columns.

The Internet provides a lot of sites that show how you can add some sort of sort indicator to a GridView, but all do this for a single GridView. Our application has quite a lot of GridViews that need this feature and therefore I decided that a component would be the right way to go. A component has the advantage that I have to code the behaviour just once and not for every single GridView over and over again.

The rest of this article shows you how you can use the GridViewSortExtender (that's the name of the component) and how it work on the inside.

6 Aug 2007, 04:20:00   Source: GridView Sort Indicator Component   Tags: ASP.NET Components
Smum County Modal Form for ASP.NET
The ModalPopupExtender control provided by the ASP.NET AJAX Control Toolkit allows the display of content in a div panel that floats in the middle of the page and prevents the user from interacting with the rest of the page until the div panel has been closed, thus creating a modal form type of entry on a web page. This is really useful technology but I wanted to make a few improvements in this modal form-like interface.
1 Aug 2007, 16:19:00   Source: Smum County Modal Form for ASP.NET   Tags: Ajax ASP.NET
Strongly typed LoadControl in ASP.net
A cleaner more OO-way to load web user controls in ASP.net
1 Aug 2007, 12:59:00   Source: Strongly typed LoadControl in ASP.net   Tags: ASP.NET
ScriptManager Enables AJAX In Your Web Apps
ASP.NET AJAX was released by Microsoft to answer this need in Web application development. My goal in writing this article is to expand your knowledge of a central component of ASP.NET AJAX called the ScriptManager control and to show how advanced programming of ASP.NET AJAX is achieved using it. ScriptManager is a server-side control that sits on your Web Form and enables the core of ASP.NET AJAX. Its primary role is the arbitration of all other ASP.NET AJAX controls on the Web Form and the addition of the right scripting libraries to the Web browser so that the client portion of ASP.NET AJAX can function. Often you will find yourself using the ScriptManager to register other controls, Web services, and client scripts...
16 Jul 2007, 19:00:00   Source: ScriptManager Enables AJAX In Your Web Apps   Tags: ASP.NET Ajax