Cho phép chọn cột để Export danh sách dữ liệu (Datatable) sử dụng itextsharp trong ASP.Net
(Export các cột được chọn trong Asp.net sử dụng thư viện iTextSharp) - Bài viết dưới đây, thủ thuật tin học sẽ giới thiệu với các bạn cách sử dụng thư viện iTextSharp để Export danh sách dữ liệu (Datatable) cho phép lựa chọn cột dữ liệu ra file PDF. Chương trình sẽ tự động lấy toàn bộ các trường dữ liệu có trong 1 bảng dữ liệu, người dùng có thể chọn hoặc bỏ chọn những trường không cần thiết để Export ra file PDF.
- B1: Tạo CSDL SQL Customers
- B2: Tạo Bảng Accounts 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 | AccountID | Int | Trường tự tăng |
2 | AccountCode | nvarchar(25) | |
3 | AccName | nvarchar(250) | |
4 | AccAddress | nvarchar(250) | |
5 | AccPhone | nvarchar(50) | |
6 | AccFAX | nvarchar(50) | |
7 | AccEmail | nvarchar(50) | |
8 | AccWebsite | nvarchar(150) | |
9 | AccDesc | nvarchar(1500) | |
10 | CreatedDate | datetime | |
11 | ModifiedDate | datetime |
- B3: Nhập dữ liệu cho bảng Accounts
- B4: Tạo các stored procedure trong SQL Server
USE [Customers]
GO
CREATE PROCEDURE [dbo].[Pro_Accounts_Get]
@AccountID int
AS
SELECT * FROM Accounts
WHERE
AccountID = @AccountID
Go
CREATE PROCEDURE [dbo].[Pro_Accounts_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 Accounts'
set @strWhere =' Where 1=1 '
if @Keyword<>''
set @strWhere= @strWhere +' And (AccountCode like N''%' +@Keyword+'%''
Or AccName like N''%' +@Keyword+'%'' Or AccAddress like N''%' +@Keyword+'%''
Or AccPhone like N''%' +@Keyword+'%'' Or AccFAX like N''%' +@Keyword+'%''
Or AccEmail like N''%' +@Keyword+'%'' Or AccWebsite like N''%' +@Keyword+'%'')'
if @SortField='CreatedDate'
Begin
set @strOrder =' Order by CreatedDate'
End
Else
Begin
set @strOrder =' Order by AccName'
End
set @strSQL=@strSQL+@strWhere+@strOrder
print @strSQL
exec sp_executesql @strSQL
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 ExportSelectedColumnsUsingItextsharp
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
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
Public Function GetRow(ByVal
ProcName As String,
ByVal ParamArray
Para() As ObjectPara)
As DataRow
Try
Dim tb As
New DataTable
Dim adap As
New SqlDataAdapter(ProcName,
_connectionString)
adap.SelectCommand.CommandType = CommandType.StoredProcedure
For Each
p As ObjectPara
In Para
adap.SelectCommand.Parameters.Add(New SqlParameter(p.Name, p.Value))
Next
adap.Fill(tb)
If tb.Rows.Count Then
Return tb.Rows(0)
End If
Catch ex As Exception
Return Nothing
End Try
Return Nothing
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
Public Class MyEventArgs
Inherits EventArgs
Private
Name As String
Private MyId As String
Public Property
SelectedName() As String
Get
Return Name
End Get
Set(ByVal value As String)
Name = value
End Set
End Property
Public Property Id() As String
Get
Return MyId
End Get
Set(ByVal value As String)
MyId = value
End Set
End Property
End Class
Public Class Constants
Public Const
DEFAULT_COLOR_COMPANYNAME As String = "#007dc2"
Public Const
DEFAULT_BACKGROUNDCOLOR_HEADERROW As String = "#99cd00"
Public Const
DEFAULT_COLOR_HEADERROW As String = "#ffffff"
Public Const
DEFAULT_BORDERCOLOR_TABLE As String = "#808080"
Public Const
DEFAULT_BACKGROUNDCOLOR_ROW As String = "#edf5ff"
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: Download thư viện iTextSharp tại đây
- B7: References itextsharp.dll trong thư mục vừa giải nén vào Project
- B8: Tạo thư mục Fonts, Download Font ARIALUNI.TTF tại đây và copy file này vào thư mục vừa tạo.
- B9: Download thư viện AjaxControlToolkit tại địa chỉ: http://ajaxcontroltoolkit.codeplex.com/downloads/get/116534
- B10: Giải nén AjaxControlToolkit.Binary.NET4, và References Ajaxcontroltoolkit.dll trong thư mục vừa giải nén vào Project.
- B11: Download các file ảnh tại đây, Copy ảnh lần lượt vào các thư mục Images
+ delete.gif, icon_search.gif vào thư mục Images
+ no.png, yes.png, sprite.png, lt.gif, icon_pdf.gif vào thư mục Styles\Images
- B12: Tạo thư mục UserControls, thêm file Popup_SelectedColumns.ascx và nhập mã HTML
<%@ Control
Language="vb"
AutoEventWireup="false"
CodeBehind="Popup_SelectedColumns.ascx.vb"
Inherits="ExportSelectedColumnsUsingItextsharp.UserControls.Popup_SelectedColumns"
%>
<%@ Register
TagPrefix="cc1"
Assembly="AjaxControlToolkit"
Namespace="AjaxControlToolkit"
%>
<script language="javascript" type="text/javascript">
function CheckBoxListSelect(cbControl, state) {
var chkBoxList = document.getElementById(cbControl);
var chkBoxCount = chkBoxList.getElementsByTagName("input");
for (var i = 0; i
< chkBoxCount.length; i++) {
chkBoxCount[i].checked = state;
}
return false;
}
</script>
<asp:Panel ID="pnlpopup" runat="server" style="display:none">
<asp:UpdatePanel ID="updatePanelPopup"
runat="server"
UpdateMode="Conditional">
<ContentTemplate>
<asp:Button id="cmdShowPopup"
runat="server"
style="display:none" />
<cc1:ModalPopupExtender
ID="ModalPopupExtender_Popup"
runat="server"
TargetControlID="cmdShowPopup"
X="750"
Y="150"
PopupControlID="pnlpopup"
CancelControlID="cmdCancel"
BackgroundCssClass="ModalPopupBG"
Drag="True"
/>
<div
class="modal"
style="width:450px;">
<div
class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button"
id="cmdClose"
runat="server"
causesvalidation="false"
class="close"
data-dismiss="modal"
aria-hidden="true">x</button>
<h4 class="modal-title">
<asp:label id="lblHeader"
runat="server"
Text="Export only
selected columns to PDF"></asp:label>
</h4>
</div>
<div class="modal-body">
<table width="100%"
cellpadding="0"
cellspacing="0">
<tr>
<td style="padding-left:10px;padding-bottom:5px;">
<a id="A1" href="#" onclick="javascript:
CheckBoxListSelect ('<%= chkExport.ClientID %>',true)">
<asp:label id="plCheckAll"
runat="server"
CssClass="NormalBold"
text="CheckAll"></asp:label>
</a>|
<a id="A2" href="#" onclick="javascript:
CheckBoxListSelect ('<%= chkExport.ClientID %>',false)">
<asp:label id="plUnCheckAll"
runat="server"
CssClass="NormalBold"
text="UnCheckAll"></asp:label>
</a>
</td>
</tr>
<tr>
<td>
<asp:CheckBoxList ID="chkExport"
CellPadding="5"
CellSpacing="10"
RepeatColumns="2"
runat="server">
</asp:CheckBoxList>
</td>
</tr>
</table>
</div>
<div class="modal-footer">
<div class="btn-group">
<asp:LinkButton id="cmdOK" runat="server"
CssClass="btn
btn-small" CausesValidation="false">
<i class="icon-exportpdf"></i> <asp:label id="lblExport" runat="server" Text="Export"></asp:label>
</asp:LinkButton>
<asp:LinkButton id="cmdCancel"
runat="server"
CssClass="btn
btn-small" Causesvalidation="false">
<i class="icon-close"></i> <asp:label id="lblClose" runat="server" Text="Close"></asp:label>
</asp:LinkButton>
</div>
</div>
</div>
</div>
</div>
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="cmdOK"
/>
</Triggers>
</asp:UpdatePanel>
</asp:Panel>
- B13: Tạo thư mục UserControls, thêm file Popup_SelectedColumns.ascx và nhập mã HTML
Imports iTextSharp.text.html
Imports iTextSharp.text
Imports iTextSharp.text.html.simpleparser
Imports iTextSharp.text.pdf
Namespace ExportSelectedColumnsUsingItextsharp.UserControls
Partial Class Popup_SelectedColumns
Inherits System.Web.UI.UserControl
#Region "Private
Members"
Private _ItemID As Integer
Private _ItemName As String
#End Region
#Region "Event
Click"
Public Delegate Sub MyEventHandler(ByVal sender As Object, ByVal e As MyEventArgs)
Public Event
OnSelectedRow As MyEventHandler
#End Region
#Region "Private
Methods"
Private Function
GetColumnNames(ByVal TableName As String) As IEnumerable(Of String)
Dim ColumnNames = New
List(Of String)()
Dim objSQL As New SqlDataProvider
Dim objBind As DataTable = objSQL.FillTable("Select COLUMN_NAME, DATA_TYPE FROM
information_schema.columns where TABLE_NAME ='" & TableName
& "'")
If Not objBind Is Nothing Then
For Each
row As DataRow
In objBind.Rows
ColumnNames.Add(row.Field(Of String)("COLUMN_NAME"))
Next
End If
Return ColumnNames
End Function
#End Region
#Region "GetColumnNames"
Private Sub
BindColumn()
Dim TableName As String = "Accounts"
Dim ColumnNames = GetColumnNames(TableName)
Dim i As Integer = 0
chkExport.Items.Clear()
For Each columnName As String In ColumnNames
chkExport.Items.Add(New
System.Web.UI.WebControls.ListItem(columnName,
columnName))
chkExport.Items(i).Selected = True
i = i + 1
Next
End Sub
#End Region
#Region "Pulbic
Methods"
Public Sub ShowPopup(ByVal ItemID As Integer)
BindColumn()
updatePanelPopup.Update()
ModalPopupExtender_Popup.Show()
End Sub
Public Sub
HidePopup()
ModalPopupExtender_Popup.Hide()
End Sub
#End Region
#Region "Properties"
Public Property
ItemID() As Integer
Get
Return _ItemID
End Get
Set(ByVal Value As Integer)
_ItemID = Value
End Set
End Property
Public Property
ItemName() As String
Get
Return _ItemName
End Get
Set(ByVal Value As String)
_ItemName = Value
End Set
End Property
#End Region
#Region "Event
Handles"
Private Sub
cmdOK_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles
cmdOK.Click
Dim MyArgs As New MyEventArgs()
Dim sListExport As String = ""
Dim i As Integer = 0
Dim iCount As Integer = 0
For i = 0 To
chkExport.Items.Count - 1
If chkExport.Items(i).Selected Then
sListExport &= chkExport.Items(i).Value & ","
iCount = iCount + 1
End If
Next
If sListExport.Length > 0 And
sListExport.EndsWith(",") Then
sListExport = sListExport.Remove(sListExport.Length - 1, 1)
End If
ModalPopupExtender_Popup.Hide()
MyArgs.Id = sListExport
MyArgs.SelectedName = iCount
RaiseEvent OnSelectedRow(Me,
MyArgs)
End Sub
Private Sub
cmdCancel_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles
cmdCancel.Click
ModalPopupExtender_Popup.Hide()
End Sub
Private Sub
cmdClose_ServerClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles
cmdClose.ServerClick
ModalPopupExtender_Popup.Hide()
End Sub
#End Region
End Class
End Namespace
<%@ Page
Title="Export
Selected Columns Using itextsharp in ASP.Net" Language="vb"
MasterPageFile="~/Site.Master"
AutoEventWireup="false"
CodeBehind="Default.aspx.vb"
Inherits="ExportSelectedColumnsUsingItextsharp._Default"
%>
<%@ Register
TagPrefix="ModalPopup"
TagName="Delete"
Src="~/UserControls/Popup_ConfirmDelete.ascx"%>
<%@ Register
TagPrefix="ModalPopup"
TagName="Export"
Src="~/UserControls/Popup_SelectedColumns.ascx"%>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<asp:ScriptManager ID="ScriptManager1"
runat="server">
</asp:ScriptManager>
<h1>
Export Selected Columns Using itextsharp in ASP.Net
</h1>
<br />
<ModalPopup:Export ID="ucSelectedColumns"
runat="server"
/>
<ModalPopup:Delete ID="ucDeleteItem"
runat="server"
/>
<asp:UpdatePanel ID="updatePanel"
runat="server"
UpdateMode="Conditional">
<ContentTemplate>
<table cellpadding="2"
cellspacing="3"
width="100%">
<tr>
<td>
<asp:LinkButton id="cmdExport" runat="server" CssClass="btn btn-small" Causesvalidation="false">
<i class="icon-exportpdf"></i> <asp:label id="lblExport" runat="server" Text="ExportToPDF"></asp:label>
</asp:LinkButton>
</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="8"
CssClass="GridStyle"
BorderColor="#cbcbcb"
BorderStyle="solid"
BorderWidth="1"
AutoGenerateColumns="false"
DataKeyNames="AccountID"
width="100%">
<AlternatingRowStyle
CssClass="GridStyle_AltRowStyle"
/>
<HeaderStyle CssClass="GridStyle_HeaderStyle"
/>
<RowStyle CssClass="GridStyle_RowStyle"
/>
<pagerstyle cssclass="GridStyle_pagination" />
<Columns>
<asp:BoundField ItemStyle-Width="10%"
DataField="AccountCode"
HeaderText="AccountCode"
/>
<asp:BoundField ItemStyle-Width="15%"
DataField="AccName"
HeaderText="AccountName"
/>
<asp:BoundField ItemStyle-Width="10%"
DataField="AccPhone"
HeaderText="Phone"
/>
<asp:BoundField ItemStyle-Width="10%"
DataField="AccFAX"
HeaderText="FAX"
/>
<asp:BoundField ItemStyle-Width="15%"
DataField="AccEmail"
HeaderText="Email"
/>
<asp:TemplateField HeaderText="Function">
<ItemStyle HorizontalAlign="Center" width="5%" />
<ItemTemplate>
<asp:ImageButton ID="cmdDelete"
CommandName="Delete"
CommandArgument='<%# Eval("AccountID")%>' runat="server"
ImageUrl="~/images/delete.gif"
CausesValidation="False"></asp:ImageButton>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</td>
</tr>
</table>
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="cmdExport"
/>
</Triggers>
</asp:UpdatePanel>
</asp:Content>
+ B11: Viết Code cho file Default.aspx
Imports iTextSharp.text.html
Imports iTextSharp.text
Imports iTextSharp.text.html.simpleparser
Imports iTextSharp.text.pdf
Namespace ExportSelectedColumnsUsingItextsharp
Public Class _Default
Inherits System.Web.UI.Page
#Region "Export PDF"
Private Sub
MySelExport_OnSelectedRow(ByVal sender As Object, ByVal e As
ExportSelectedColumnsUsingItextsharp.MyEventArgs)
Dim sExportList As String = ""
Dim iCount As Integer = 0
With e
If e.Id <> "" Then
sExportList = e.Id
iCount = e.SelectedName
If sExportList <> "" Then
ExportToPDF("List-Account.pdf", sExportList, iCount)
End If
End If
End With
End Sub
Private Sub
ExportToPDF(ByVal FileName As String, ByVal ExportList As String, ByVal iCount As Integer)
Dim document As New Document(PageSize.A4.Rotate,
20, 20, 30, 20)
Dim msReport As New System.IO.MemoryStream()
Dim FilePath As String = ""
FilePath = Server.MapPath("Fonts\ARIALUNI.TTF")
Dim fontpath As String = FilePath
'"simsun.ttf" file was downloaded from web and
placed in the folder
Dim bf As BaseFont = BaseFont.CreateFont(fontpath,
BaseFont.IDENTITY_H, BaseFont.EMBEDDED)
'create new font based on BaseFont
Dim fontCompany As New Font(bf, 13, Font.BOLD, New Color(System.Drawing.ColorTranslator.FromHtml(Constants.DEFAULT_COLOR_COMPANYNAME)))
Dim fontHeader As New Font(bf, 12, Font.BOLD, Color.BLUE)
Dim fontSubHeader As New Font(bf, 10)
Dim fontTitle As New Font(bf, 11, Font.BOLD, Color.BLACK)
Dim fontContent As New Font(bf, 11, Font.NORMAL, Color.BLACK)
Dim fontTableHeader As
New Font(bf,
10, Font.BOLD, New
Color(System.Drawing.ColorTranslator.FromHtml(Constants.DEFAULT_COLOR_HEADERROW)))
Try
' creation of the different writers
Dim writer As
PdfWriter = PdfWriter.GetInstance(document,
msReport)
' we add some meta information to the document
document.AddAuthor("Thu thuat lap
trinh")
document.AddSubject("Export to
PDF")
document.Open()
Dim cBreak As
New Chunk(Environment.NewLine)
Dim pBreak As
New Phrase()
Dim
paBreak As New Paragraph()
'=================Start Header
=====================
'CompnayName
Dim sText As
String = "THỦ
THUẬT LẬP TRÌNH" & vbCrLf
Dim beginning As
New Chunk(sText,
fontCompany)
Dim p1 As
New Phrase(beginning)
Dim pCompanyName As New Paragraph()
pCompanyName.IndentationLeft = 30
pCompanyName.Add(p1)
document.Add(pCompanyName)
'Website
Dim sWebsite As
String = "Website:
http://thuthuatlaptrinh.blogspot.com"
sText = ""
If sWebsite <> "" Then
sText = sWebsite & vbCrLf
End If
If
sText <> "" Then
sText = sText.Replace(Environment.NewLine,
String.Empty).Replace(" ", String.Empty)
beginning = New Chunk(sText,
fontSubHeader)
p1 = New Phrase(beginning)
Dim
pAddresse As New
Paragraph()
pAddresse.IndentationLeft = 30
pAddresse.Add(p1)
document.Add(pAddresse)
End If
Dim sEmail As
String = "Email:
kenhphanmemviet@gmail.com"
If sEmail <> "" Then
sText = sEmail & vbCrLf
End If
If sText <> "" Then
sText = sText.Replace(Environment.NewLine,
String.Empty).Replace(" ", String.Empty)
beginning = New Chunk(sText,
fontSubHeader)
p1 = New Phrase(beginning)
Dim pAddresse As
New Paragraph()
pAddresse.IndentationLeft = 30
pAddresse.Add(p1)
document.Add(pAddresse)
End If
'=================End Header
=====================
'Title
sText = "LIST ACCOUNT"
& Environment.NewLine & vbCrLf
If sText <> "" Then
beginning = New Chunk(sText,
fontHeader)
p1 = New Phrase(beginning)
Dim pAddresse As
New Paragraph()
pAddresse.IndentationLeft = 10
pAddresse.Alignment = 1
pAddresse.Add(p1)
document.Add(pAddresse)
End If
Dim datatable As
New iTextSharp.text.Table(iCount)
datatable.Padding = 2
datatable.Spacing = 1
datatable.WidthPercentage = 98
Dim headerwidths As Single() = New Single(iCount -
1) {}
Dim x As
Integer = 0
Dim
ItemStyleWidth As Integer
= 10
ItemStyleWidth = 100 / iCount
For Each
sValue As String
In ExportList.Split(",")
'Header Table
headerwidths(x) = CInt(ItemStyleWidth)
Dim cellText As
New Cell(New Phrase(sValue,
fontTableHeader))
cellText.BackgroundColor = New Color(System.Drawing.ColorTranslator.FromHtml(Constants.DEFAULT_BACKGROUNDCOLOR_HEADERROW))
cellText.HorizontalAlignment = 1
cellText.VerticalAlignment = 1
datatable.AddCell(cellText)
x = x + 1
Next
datatable.Widths = headerwidths
datatable.BorderWidth = 1
datatable.DefaultCellBorderWidth = 1
datatable.DefaultHorizontalAlignment = 1
datatable.DefaultVerticalAlignment = 1
datatable.DefaultCellBorderColor = New
iTextSharp.text.Color(System.Drawing.ColorTranslator.FromHtml(Constants.DEFAULT_BORDERCOLOR_TABLE))
datatable.BorderColor = New
iTextSharp.text.Color(System.Drawing.ColorTranslator.FromHtml(Constants.DEFAULT_BORDERCOLOR_TABLE))
Dim objBind As
New DataTable
Dim i As
Integer = 0
Dim dColumn As
DataColumn
objBind = BindData()
If Not
objBind Is Nothing
Then
If objBind.Rows.Count > 0 Then
For Each row As DataRow In objBind.Rows
If grvObject.Rows(i).RowType = DataControlRowType.DataRow Then
If Not row Is Nothing Then
For Each sValue As String In ExportList.Split(",")
For Each dColumn In objBind.Columns
If sValue = dColumn.ColumnName Then
datatable.DefaultHorizontalAlignment = Element.ALIGN_LEFT
datatable.AddCell(New Phrase(row(sValue).ToString(), fontContent))
End If
Next
Next
End If
End If
Next
document.Add(datatable)
End If
End If
Catch e As Exception
Console.Error.WriteLine(e.Message)
End Try
document.Close()
Response.Clear()
Response.AddHeader("content-disposition",
"attachment;filename=" &
FileName & ".pdf")
Response.ContentType = "application/pdf"
Response.BinaryWrite(msReport.ToArray())
Response.End()
End Sub
#End Region
#Region "Bind Data"
Private Sub
BindAccount()
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
updatePanel.Update()
End If
End Sub
Private Function
BindData() As DataTable
Dim objSQL As New SqlDataProvider
Dim objBind As DataTable = objSQL.FillTable("Pro_Accounts_List", New ObjectPara("@Keyword", txtSearch.Text.Trim), _
New ObjectPara("@SortField", "CreatedDate"),
_
New ObjectPara("@SortType", "DESC"))
Return objBind
End Function
#End Region
#Region "GridView
Methods"
Private Sub
grvObject_RowDeleting(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.GridViewDeleteEventArgs)
Handles grvObject.RowDeleting
Dim ItemID As Integer = CType(grvObject.DataKeys(e.RowIndex).Value,
Integer)
Dim ItemName As String = ""
If ItemID <> -1 Then
With CType(ucDeleteItem,
ExportSelectedColumnsUsingItextsharp.UserControls.Popup_ConfirmDelete)
.ItemID = ItemID
.ShowPopup(ItemID, "")
End With
End If
End Sub
Private Sub
grvObject_RowDataBound(ByVal sender As Object, ByVal e As GridViewRowEventArgs) Handles
grvObject.RowDataBound
If
(e.Row.RowType = DataControlRowType.DataRow)
Then
'Delete
Dim cmdDelete As
ImageButton = DirectCast(e.Row.FindControl("cmdDelete"), ImageButton)
If Not
cmdDelete Is Nothing
Then
cmdDelete.ToolTip = "Delete
Account"
End If
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
BindAccount()
End Sub
#End Region
#Region "Popup"
Private Sub
MySelDelete_OnSelectedRow(ByVal sender As Object, ByVal e As
ExportSelectedColumnsUsingItextsharp.MyEventArgs)
Dim ItemName As String = ""
With e
If e.Id <> "" Then
BindAccount()
End If
End With
End Sub
#End Region
#Region "Event
Handles"
Protected Sub
Page_Load(ByVal sender As
Object, ByVal e
As System.EventArgs)
Handles Me.Load
Try
AddHandler CType(ucDeleteItem,
ExportSelectedColumnsUsingItextsharp.UserControls.Popup_ConfirmDelete).OnSelectedRow,
AddressOf MySelDelete_OnSelectedRow
AddHandler CType(ucSelectedColumns,
ExportSelectedColumnsUsingItextsharp.UserControls.Popup_SelectedColumns).OnSelectedRow,
AddressOf MySelExport_OnSelectedRow
If Page.IsPostBack = False Then
'Default Submit Button
Page.Form.DefaultButton = cmdQuickSearch.UniqueID
BindAccount()
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
BindAccount()
End Sub
Private Sub
cmdExport_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles
cmdExport.Click
With CType(ucSelectedColumns,
ExportSelectedColumnsUsingItextsharp.UserControls.Popup_SelectedColumns)
.ShowPopup(-1)
End With
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 " Cho phép chọn cột để Export danh sách dữ liệu (Datatable) sử dụng itextsharp trong ASP.Net "