Pages

Sunday, August 16, 2009

Flash Control for ASP.NET

FlashControl is an ASP.NET server control which allow you to add swf Flash movies or Flex in your ASP.NET projects. As any WebControl, you can add FlashControl in Visual Studio Toolbox, and just drag and drop it in your ASP.NET web pages ! It is now compatible with ASP.NET AJAX!






Click here for details ......

Sunday, August 9, 2009

ASP.NET Tab Generator

One of the controls I feel ASP.NET is missing is a tab control. While this itself is not a control, it will create the code you need to simulate tabs and tab views.

You can see an example of how the feature works right now! The "Info" and "Changelog" tabs above were made using this tool.

Click here for details ......

Lazy Loading jQuery Tabs with ASP.NET

This article looks at efficient use of jQuery tabs when displaying data. Specifically, it covers how to lazy-load data, so that it is only accessed and displayed if the tab is clicked.

Lazy Loading is a well-known design pattern that is intended to prevent redundant processing within your application. In the case of tabbed data, there seems little point retrieving and binding data that appears in a tabbed area that no one looks at. So, this examples covers how to defer data access and display until the user wants it - which is defined by them clicking the relevant tab.

Click here for details ......