Pages

Showing posts with label ASP.NET Tab Control. Show all posts
Showing posts with label ASP.NET Tab Control. Show all posts

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 ......