help.net
<font size="2"><br />Musing on .Net</font>
-
Gallery Server Pro - An ASP.NET multimedia gallery
Gallery Server Pro is a powerful and easy-to-use ASP.NET web application that lets you share and manage photos, video, audio, and other files over the web.
-
ImageTemplate.NET
Have you ever had the need to generate images on the fly in your ASP.NET applications? You could use GDI.NET to do this directly, but we think we have an easier way. Enter ImageTemplate.NET. ImageTemplate.NET lets you configure an image template in an XML file and then change the image that is generated by passing parameters in the URL.
-
Advanced concepts in SQL Server 2005
This article discusses how to improve the performance of SQL Server 2005. The author also examines Clustering, Indexing, Stored Procedures, Profiling, Recovery mechanism, etc. in detail.
-
Page and User Control communication
This article shows how the page and user controls within the page can communicate together with a little more work. It shows how the use of interfaces or custom page classes can make the application more efficient and reduce code.
-
Extending .NET Events Functionality
Anyone who has used .NET events and delegates understands its power and ease of use. Creating an event and subscribing onto it has become quite simple in C# or VB.NET classes. Moreover, it is a helpful mechanism to implement (for instance) a responsive user interface. When carefully designed you don't need to poll for an object's state, instead you signal its state by means of an event.
-
Working with DragPanel AJAX Control
This article examines the usage of the ASP.NET AJAX Control named DragPanel with the help of a project.
-
Inline-Edit Control Using ASP.NET 2.0 AJAX 1.0 Extensions
In this article Bilal Haidar will show you how to develop a Microsoft ASP.NET AJAX 1.0 Inline-Edit control that can be used to provide on-the-spot text editing for specific areas on a web form.
-
Developing Business Logic using the WCF Service Library
In this article, Jagadish Chaterjee will focus on developing a WCF library which performs business logic (with CRUD operations) at the middle tier level and finally access it using ASP.NET 3.5.
-
Access a user control properties in a master page
I tried of course to cast the user control but unless some use of Reflection I don't see how I can type the control.
-
Programmatically Updating Databases using ASP.NET 2.0 SqlDataSource
Using programmatically the SqlDatasource is a much better way than embedding the Select and Insert command in the Aspx page.