Tạo Accordion từ dữ liệu SQL Server sử dụng Bootstrap trong Asp.net
(Cách tạo Accordion động trong Asp.net) - Accordion là một tiện ích rất tiện lợi cho người thiết kế Website, vì ngoài việc là một Menu nó cũng có thể cho phép hiển thị nội dung, hình ảnh dễ dàng. Từ đó giúp người thiết kế vừa có thể hiển thị đầy đủ thông tin mà tiết kiệm nhiều khoảng không gian trên Web. Hiện có rất nhiều các Plugin hay Jquery hỗ trợ công việc này, tuy nhiên hôm nay Thủ thuật lập trình sẽ giới thiệu với các bạn cách sử dụng Bootstrap để tạo các Accordion và thông tin Accordion được lấy từ CSDL SQL Server.
- B1: Tạo Bảng Accordions có cấu trúc phía dưới trong CSDL SQL Server.
STT | Tên trường | Kiểu trường | Ghi chú |
1 | ItemID | Int | Trường tự tăng |
2 | Title | nvarchar(150) | |
3 | Description | ntext | Mô tả |
4 | SortOrder | Int | Thứ tự sắp xếp |
5 | IsVisible | bit | Ân/Hiện Accordion |
- B2: Nhập dữ liệu cho bảng Accordions
- B3: Tạo stored procedure trong SQL Server
CREATE procedure [dbo].[Pro_Accordions_List]
@IsVisible bit
as
declare @strSQL nvarchar(1000)
declare @strWhere nvarchar(500)
declare @strOrder nvarchar (50)
set @strSQL= 'Select * from Accordions'
set @strWhere =' where 1=1'
if @IsVisible=1
set @strWhere= @strWhere +' and (IsVisible=1)'
if @IsVisible=0
set @strWhere= @strWhere +' and (IsVisible=0 Or IsVisible Is Null)'
set @strOrder =' Order by SortOrder, Title'
set @strSQL=@strSQL+@strWhere+@strOrder
print @strSQL
exec sp_executesql @strSQL
- B4: Tạo Project trong Microsoft Visual Studio 2010
Trong Visual Studio tạo 1 Class có tên: Utility và nhập đoạn Code phía dưới cho Class này.
Imports System.Data.SqlClient
Imports System.Data
Namespace BootstrapAccordion
Public Class SqlDataProvider
#Region "Membres Prives"
Shared _IsError As Boolean = False
Private _connectionString As String
#End Region
#Region "Constructeurs"
Public Sub New()
Try
_connectionString = ConfigurationManager.ConnectionStrings("SiteSqlServer").ConnectionString
_IsError = False
Catch ex As Exception
_IsError = True
End Try
End Sub
#End Region
#Region "Proprietes"
Public ReadOnly Property ConnectionString() As String
Get
Return _connectionString
End Get
End Property
#End Region
#Region "Functions"
Public Function FillTable(ByVal sql As String) As DataTable
Try
Dim tb As New DataTable
Dim adap As New SqlDataAdapter(sql, _connectionString)
adap.Fill(tb)
Return tb
Catch ex As Exception
Return Nothing
End Try
End Function
Public Function FillTable(ByVal ProcName As String, ByVal ParamArray Para() As ObjectPara) As DataTable
Try
Dim tb As New DataTable
Dim adap As New SqlDataAdapter(ProcName, _connectionString)
adap.SelectCommand.CommandType = CommandType.StoredProcedure
If Not Para Is Nothing Then
For Each p As ObjectPara In Para
adap.SelectCommand.Parameters.Add(New SqlParameter(p.Name, p.Value))
Next
End If
adap.Fill(tb)
Return tb
Catch ex As Exception
Return Nothing
End Try
End Function
#End Region
End Class
Public Class ObjectPara
Dim _name As String
Dim _Value As Object
Sub New(ByVal Pname As String, ByVal PValue As Object)
_name = Pname
_Value = PValue
End Sub
Public Property Name() As String
Get
Return _name
End Get
Set(ByVal value As String)
_name = value
End Set
End Property
Public Property Value() As Object
Get
Return _Value
End Get
Set(ByVal value As Object)
_Value = value
End Set
End Property
End Class
End Namespace
Chú ý: Thuộc tính SiteSqlServer chính là chuỗi Connect với SQL Server trong file Web.Config
- B5: Mở file Site.Master dưới dạng HTML, nhập thêm các thông tin phía dưới thẻ <head runat="server">
<link href="~/Styles/Site.css" rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"
/>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css"
/>
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript"
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
- B6: Mở file Default.aspxdưới dạng HTML và nhập mã HTML
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<h3>
Creating Accordion Widget with Bootstrap
</h3>
<asp:Label ID="lblAccordion"
runat="server"></asp:Label>
</asp:Content>
- B7: Viết Code cho file Default.aspx
C# Code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.SqlClient;
using System.Data;
using System.Configuration;
namespace AddImageInDropdownlist
{
public class SqlDataProvider
{
#region "Membres Prives"
private string _connectionString;
#endregion
#region "Constructeurs"
public SqlDataProvider()
{
try
{
_connectionString = ConfigurationManager.ConnectionStrings["SiteSqlServer"].ConnectionString;
}
catch
{
}
}
#endregion
#region "Proprietes"
public string ConnectionString
{
get { return _connectionString; }
}
#endregion
#region "Functions"
public DataTable FillTable(string ProcName, params ObjectPara[] Para)
{
try
{
DataTable tb = new DataTable();
SqlDataAdapter adap = new SqlDataAdapter(ProcName, _connectionString);
adap.SelectCommand.CommandType = CommandType.StoredProcedure;
if (Para != null)
{
foreach (ObjectPara p in Para)
{
adap.SelectCommand.Parameters.Add(new SqlParameter(p.Name, p.Value));
}
}
adap.Fill(tb);
return tb;
}
catch
{
return null;
}
}
#endregion
}
public class ObjectPara
{
string _name;
object _Value;
public ObjectPara(string Pname, object PValue)
{
_name = Pname;
_Value = PValue;
}
public string Name
{
get { return _name; }
set { _name = value; }
}
public object Value
{
get { return _Value; }
set { _Value = value; }
}
}
}
VB.NET Code
Namespace BootstrapAccordion
Public Class _Default
Inherits System.Web.UI.Page
#Region "Create
Accordion"
Private Sub
CreateAccordion()
Dim objBind As New DataTable
Dim iCount As Integer = 0
Dim i As Integer = 1
objBind = BindData()
If Not objBind Is Nothing Then
If objBind.Rows.Count > 0 Then
iCount = objBind.Rows.Count
With lblAccordion
.Controls.Add(New LiteralControl("<div
class=""bs-example"">"))
.Controls.Add(New LiteralControl("<div class=""panel-group""
id=""accordion"">"))
For Each row As DataRow In objBind.Rows
.Controls.Add(New LiteralControl("<div class=""panel
panel-default"">"))
'Heading
.Controls.Add(New LiteralControl("<div
class=""panel-heading"">"))
.Controls.Add(New LiteralControl("<h4
class=""panel-title"">"))
.Controls.Add(New LiteralControl("<a data-toggle=""collapse""
data-parent=""#accordion"" href=""#collapse"
& i & """>"
& row("Title").ToString & "</a>"))
.Controls.Add(New LiteralControl("</h4>"))
.Controls.Add(New LiteralControl("</div>"))
'End Heading
'Body
If i = 1 Then
'Active
.Controls.Add(New LiteralControl("<div id=""collapse" &
i & """
class=""panel-collapse collapse in"">"))
Else
.Controls.Add(New LiteralControl("<div id=""collapse" &
i & """
class=""panel-collapse collapse"">"))
End If
.Controls.Add(New LiteralControl("<div
class=""panel-body"">"))
.Controls.Add(New LiteralControl("" & Server.HtmlDecode(row("Description")) & ""))
.Controls.Add(New LiteralControl("</div>"))
.Controls.Add(New LiteralControl("</div>"))
'End Body
.Controls.Add(New LiteralControl("</div>"))
i = i + 1
Next
.Controls.Add(New LiteralControl("</div>"))
.Controls.Add(New LiteralControl("</div>"))
End With
End If
End If
End Sub
#End Region
#Region "Bind Data"
Private Function
BindData() As DataTable
Dim objSQL As New SqlDataProvider
Dim objBind As DataTable = objSQL.FillTable("Pro_Accordions_List", New ObjectPara("@IsVisible", 1))
Return objBind
End Function
#End Region
#Region "Event
Handles"
Protected Sub
Page_Load(ByVal sender As
Object, ByVal e
As System.EventArgs)
Handles Me.Load
Try
If Page.IsPostBack = False Then
CreateAccordion()
End If
Catch ex As Exception
End Try
End Sub
#End Region
End Class
End Namespace
Chạy Project, các bạn sẽ có một Accordion chuyên nghiệp giống hình phía dưới và với các thông tin được lấy từ CSDL SQL Server, người sử dụng có thể dễ dàng bổ xung hoặc chỉnh sửa thông tin cho các Accordion nhanh chóng và dễ dàng hơn.
Chúc các bạn thành công!
Quang Bình
No Comment to " Tạo Accordion từ dữ liệu SQL Server sử dụng Bootstrap trong Asp.net "