Cập nhật thông tin vào Database từ Checkbok trên Gridview
(Thay đổi thông tin Database từ sự kiện Change Checkbox trong Gridview) – Để thay đổi thông tin dữ liệu, thông thường người sử dụng phải kích nút Edit một màn hình Popup hoặc màn hình Edit xuất hiện. Kích nút Update sau khi đã chỉnh sửa thông tin và các thông tin chỉnh sửa sẽ được thay đổi trong CSDL. Với những thông tin đôi khi chỉ cần thay đổi trạng thái True/False hoặc On/Off nếu phải thực hiện nhiều thao tác như vậy sẽ không thuận tiện cho người sử dụng. Bài viết dưới đây sẽ hướng dẫn các bạn cách chỉnh sửa thông tin dạng True/False ngay trên Gridview, chỉ cần tích/bỏ tích vào Checkbox là giá trị sẽ được Update vào Database mà hoàn toàn không phải sử dụng thêm bất kỳ Form nào khác.
- B1: Tạo CSDL Customers trong SQL Server
STT | Tên trường | Kiểu trường | Ghi chú |
1 | ContactID | Int | Trường tự tăng |
2 | ContactCode | nvarchar(25) | |
3 | ContactName | nvarchar(250) | |
4 | Sex | bit | |
5 | Birthdate | datetime | |
6 | Address | nvarchar(250) | |
7 | Mobille | nvarchar(50) | |
8 | nvarchar(150) | ||
9 | CreatedDate | datetime | |
10 | ModifiedDate | datetime |
- B3: Nhập dữ liệu cho bảng Contacts
- B4: Tạo stored procedure trong SQL Server
USE
[Customers]
GO
CREATE PROCEDURE [dbo].[Pro_Contacts_List]
@Keyword nvarchar(250),
@SortField nvarchar(50),
@SortType nvarchar(10)
AS
declare
@strSQL nvarchar(1000)
declare @strWhere nvarchar(500)
declare @strOrder nvarchar (50)
set @strSQL= 'Select * from Contacts'
set @strWhere =' Where 1=1 '
if @Keyword<>''
set @strWhere= @strWhere +' And (ContactCode like
N''%' +@Keyword+'%''
Or ContactName like N''%' +@Keyword+'%'' Or Address like N''%' +@Keyword+'%''
Or Mobille like N''%' +@Keyword+'%'' Or Email like N''%' +@Keyword+'%'')'
if @SortField='CreatedDate'
Begin
set @strOrder =' Order by CreatedDate'
End
Else
Begin
set @strOrder =' Order by ContactName'
End
set @strSQL=@strSQL+@strWhere+@strOrder
print @strSQL
exec sp_executesql @strSQL
create PROCEDURE [dbo].[Pro_Contacts_UpdateSex]
@ItemID int,
@Sex bit
AS
UPDATE Contacts SET
Sex = @Sex
WHERE
ContactID = @ItemID
Go
- B5: 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 UpdateDatabaseOnCheckboxChangeGridview
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 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
Public Function
RunSQL(ByVal ProcName As
String, ByVal ParamArray Para() As ObjectPara) As Object
Try
Dim _cnn As
New SqlConnection(_connectionString)
_cnn.Open()
Dim cmd As
New SqlCommand(ProcName,
_cnn)
cmd.CommandType = CommandType.StoredProcedure
For Each
p As ObjectPara
In Para
cmd.Parameters.Add(New SqlParameter(p.Name, p.Value))
Next
Return cmd.ExecuteScalar
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
- B6: Mở file Default.aspxdưới dạng HTML và nhập mã HTML
<%@ Page
Title="Change The
Value of a Checkbox in a Gridview" Language="vb" MasterPageFile="~/Site.Master" AutoEventWireup="false" EnableEventValidation= "false" CodeBehind="Default.aspx.vb"
Inherits="UpdateDatabaseOnCheckboxChangeGridview._Default"
%>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<asp:ScriptManager ID="ScriptManager1"
runat="server">
</asp:ScriptManager>
<h3>
Change The Value of a Checkbox in a Gridview
</h3>
<asp:UpdatePanel ID="updatePanel"
runat="server"
UpdateMode="Conditional">
<ContentTemplate>
<table cellpadding="2"
cellspacing="3"
width="100%">
<tr>
<td>
</td>
<td
align="right">
<asp:Label ID="plKeyword" runat="server" Text="Keyword"></asp:Label>
<asp:TextBox ID="txtSearch" CssClass="form-control" ToolTip="Enter Keyword" runat="server" width="200px"></asp:TextBox>
<asp:ImageButton ID="cmdQuickSearch" runat="server" causesvalidation="false" imageurl="~/images/icon_search.gif"></asp:ImageButton>
</td>
</tr>
<tr
id="trMessage"
runat="server"
visible="false">
<td
colspan="2">
<asp:Label ID="lblMessage" runat="server" Text="No Data"></asp:Label>
</td>
</tr>
<tr>
<td
colspan="2">
<asp:GridView ID="grvObject" runat="server" AllowPaging="true" PageSize="10"
CssClass="GridStyle"
BorderColor="#cbcbcb"
BorderStyle="solid"
BorderWidth="1"
AutoGenerateColumns="false"
DataKeyNames="ContactID"
width="100%">
<AlternatingRowStyle
CssClass="GridStyle_AltRowStyle"
/>
<HeaderStyle CssClass="GridStyle_HeaderStyle"
/>
<RowStyle CssClass="GridStyle_RowStyle"
/>
<pagerstyle cssclass="GridStyle_pagination"
/>
<Columns>
<asp:TemplateField HeaderText = "Number">
<ItemStyle HorizontalAlign="Center"
Width="2%"></ItemStyle>
<ItemTemplate>
<asp:Label ID="lblRowNumber"
Text='<%# Container.DataItemIndex + 1 %>' runat="server"
/>
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField ItemStyle-Width="10%"
DataField="ContactCode"
HeaderText="ContactCode"
/>
<asp:BoundField ItemStyle-Width="15%"
DataField="ContactName"
HeaderText="ContactName"
/>
<asp:TemplateField HeaderText="Sex">
<ItemStyle HorizontalAlign="Center"
width="3%"
/>
<ItemTemplate>
<asp:CheckBox id="chkSex" runat="server"
AutoPostBack="true"
OnCheckedChanged="chkSex_CheckedChanged"
Checked='<%# Bind("Sex") %>'></asp:CheckBox>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Birthdate">
<ItemStyle HorizontalAlign="Center" width="8%" />
<ItemTemplate>
<asp:Label ID="lblBirthdate"
Text='<%# Eval("Birthdate").ToShortDateString %>' runat="server"></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField ItemStyle-Width="10%"
DataField="Mobille"
HeaderText="Mobille"
/>
<asp:BoundField ItemStyle-Width="10%"
DataField="Email"
HeaderText="Email"
/>
</Columns>
</asp:GridView>
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content>
- B7: Viết Code cho file Default.aspx
'Visit
http://thuthuatlaptrinh.blogspot.com for more ASP.NET Tutorials
Namespace UpdateDatabaseOnCheckboxChangeGridview
Public Class _Default
Inherits System.Web.UI.Page
#Region "Private
Methods"
Private Sub
UpdateSex(ByVal ItemID As
Integer, ByVal
Sex As Boolean)
Dim objSQL As New SqlDataProvider
'Update Sex
objSQL.RunSQL("Pro_Contacts_UpdateSex",
New ObjectPara("@ItemID", ItemID), _
New ObjectPara("@Sex", Sex))
End Sub
#End Region
#Region "Bind Data"
Private Sub
BindContact()
Dim objBind As New DataTable
objBind = BindData()
If Not objBind Is Nothing Then
If objBind.Rows.Count > 0 Then
grvObject.DataSource = objBind
grvObject.DataBind()
trMessage.Visible = False
grvObject.Visible = True
Else
trMessage.Visible = True
grvObject.Visible = False
End If
End If
updatePanel.Update()
End Sub
Private Function BindData() As
DataTable
Dim objSQL As New SqlDataProvider
Dim objBind As DataTable = objSQL.FillTable("Pro_Contacts_List", New ObjectPara("@Keyword", txtSearch.Text.Trim), _
New ObjectPara("@SortField", "CreatedDate"),
_
New ObjectPara("@SortType", "DESC"))
Return objBind
End Function
#End Region
#Region "GridView
Methods"
Public Sub
chkSex_CheckedChanged(ByVal sender As Object, ByVal e As EventArgs)
Dim chkSex As CheckBox = DirectCast(sender,
CheckBox)
Dim row As GridViewRow = DirectCast(chkSex.NamingContainer,
GridViewRow)
Dim RowIndex As Integer = row.RowIndex
Dim ItemID As String = grvObject.DataKeys(RowIndex).Value.ToString
Dim IsSex As Boolean = chkSex.Checked
If ItemID <> ""
Then
UpdateSex(ItemID, IsSex)
BindContact()
End If
End Sub
Private Sub
grvObject_PageIndexChanging(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.GridViewPageEventArgs)
Handles grvObject.PageIndexChanging
grvObject.PageIndex = e.NewPageIndex
BindContact()
End Sub
#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
'Default Submit Button
Page.Form.DefaultButton = cmdQuickSearch.UniqueID
BindContact()
End If
Catch ex As Exception
End Try
End Sub
Private Sub
cmdQuickSearch_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles
cmdQuickSearch.Click
BindContact()
End Sub
#End Region
End Class
End Namespace
Bây giờ chạy Project bạn sẽ có kết quả như ảnh phía dưới.
Chúc các bạn thành công!
Quang Bình
No Comment to " Cập nhật thông tin vào Database từ Checkbok trên Gridview "