ASP.NET Accordion control with SQL Server Connectivity
| by RANA | May 17, 2008
The Accordion is a web control that allows you to provide multiple panes and display them one at a time. It is like having several CollapsiblePanels where only one can be expanded at a time.
How to populate data from the SQL SERVER database and integrate with Accordion Control
I tried from the internet but hardly found something good which is so friendly.
I decided to make a code for this.
First create tables in the database
CREATE TABLE [dbo].[Category](
[CategoryId] [int] IDENTITY(1,1) NOT NULL,
[CatName] [nvarchar](50) NULL,
...............http://blog.joggee.com/?p=162
The author of Blog.Joggee is the same person of the Rana Blog in the codeproject.wordpress.com.The reason why this new blog was created because Rana wanted to share more diverse range of services such as the latest technology, variation of ideas and universal advice in more user friendly and customizable way.Join and become a part of an international community dedicated to excellence, service and knowledge creation.
How to populate data from the SQL SERVER database and integrate with Accordion Control
I tried from the internet but hardly found something good which is so friendly.
I decided to make a code for this.
First create tables in the database
CREATE TABLE [dbo].[Category](
[CategoryId] [int] IDENTITY(1,1) NOT NULL,
[CatName] [nvarchar](50) NULL,
...............http://blog.joggee.com/?p=162
The author of Blog.Joggee is the same person of the Rana Blog in the codeproject.wordpress.com.The reason why this new blog was created because Rana wanted to share more diverse range of services such as the latest technology, variation of ideas and universal advice in more user friendly and customizable way.Join and become a part of an international community dedicated to excellence, service and knowledge creation.
Article Source: http://www.articleset.com

You are welcome to publish or reprint this article free of charge, provided:
- you include the entire article, unchanged, including the "About The Author" box
- all hyperlinks remain active, including the bottom ArticleSet.com link (does not apply to print publications)
- you agree not to hold the authors nor ArticleSet.com liable for any loss profits, expenses, or any other damages resulting from the use or misuse of articles published on this website