Click here to Skip to main content
15,867,288 members
Articles / Web Development / HTML

Database Export Wizard for ASP.NET and SQL Server

Rate me:
Please Sign up or sign in to vote.
4.98/5 (61 votes)
20 May 2010CPOL4 min read 151.5K   8.1K   162   53
A step wizard for ASP.NET to export database objects to CSV, TXT, HTML, XML, or SQL

Table of Contents

Introduction

With this article, I would like to share a simple but useful little tool: ExportWizard, a Step Wizard for Database Export.

It guides users through a few simple steps to choose a database object (table, view, or query), select columns, and export the data in any of the standard formats CSV, HTML, XML, or SQL.

The UI: 3 Simple Steps

The task of exporting from a database can be broken down as follows:

  1. Select a source database object (table, view, or query)
  2. Select columns to include in the export
  3. Select the export format (CSV, HTML, XML, SQL...)

These simple sequential tasks are a good fit for a step wizard.

The implementation discussed in this article is a web control, so the screenshots below are inside a web browser. It could be coded as a desktop application as well with the same basic elements and the same steps arrangement.

Step 1: Choose Data Source

Select table, view or SQL query to export data from.

Step 2: Select Columns to Include

Select columns to include in the export and sorting options.

Step 3: Choose Export Format and Options

This last step is for selecting the export format and options.

Different options for each format (with a little JavaScript to dynamically switch option panel without posting the page):

CSV, TXT, Excel
Options: Header and Separator

XML

Options: Root element, attributes/elements format

HTML
Options: Colors

SQL

Options: Transaction, identity

Using the Web Control

The code is encapsulated as a web control (written in VB.NET) for ASP.NET and SQL Server. It is fully integrated with Visual Studio and its WYSIWYG designer. Just drag & drop to embed the control into your page.

Web Control Properties

Property Description
DesignStep
(Design Time only)
Enables you to get a WYSIWYG display of any step during design time.
DHTMLenabled Determines if user can show and hide options.
HeaderStep1
HeaderStep2
HeaderStep3 

Introductory text for each step. Suggested values:
HeaderStep1 ="Please, select the data source to export."
HeaderStep2 ="Select columns to exports."
HeaderStep3 = "Select Output and format options."

SourceObject Property used to limit the possible tables or views from which to export. Comma-separated list of database objects.
SourceColumns Comma-separated list of columns to be selected by default.
Example: SourceColumns="ID,name,title"
SqlConnection Connection string to the database, for example:
"SERVER=(local);DATABASE=EvoDemo;UID=john;PWD=secret;".
StepIndex
(ReadOnly)

Index of the step currently displayed.

  1. step1_Source
  2. step2_SourceDetails
  3. step3_OutputType
  4. step4_Export

At design time, DesignStep allows users to view each step.

Events

ExportWizard provides one event Show.

Event Description
Show

Triggered on display. Events arguments are the wizard current Title and StepIndex.

ShowEventArgs: Title As String, StepIndex As Integer

Methods

GetExport: Returns the database export as a String.
Example: GetExport("Contact", "Firstname, Lastname, PhoneW, email", "HTML")

Parameter Description
Table

Table or View from which to export.

Columns List of columns to export.
Possible value: Columns="ID,name" or Columns="*"
ExportType

Format in which to export.
Possible values: CSV, HTML, SQL, TXT, or XML.

In addition, standard properties inherited from System.Web.UI.WebControls.WebControl applies.

Embedding the Control into the Page

To embed the control, copy the control DLL into the bin directory of your web application and add two lines of code to your page. The first line registers the control tag prefix (place this at the top of the page):

ASP.NET
<%@ Register TagPrefix = "EVOL" Namespace = "Evolutility.ExportWizard" 
	Assembly = "Evolutility.ExportWizard" %> 

The second line embeds the control. Place the line anywhere within the page:

XML
<EVOL:ExportWizard id= "ExportWizard1" runat = "server" 
	SqlConnection = "Server=(local);Database=Demo;Trusted_Connection=yes;" 	 
</EVOL:ExportWizard>

About the Code

Many developers or database administrators have written code to export from a database before (very likely you too if you are reading this article). This web control is written in VB.NET and is not intended to scale, but it does the job with small database tables.

To populate the dropdowns with the list of tables and views, or the list of columns, the technique I used was to query SQL Server system tables directly.

  • sysobjects (contains names of tables, views, stored procedures, and triggers)
  • syscolumns (contains column and stored procedure parameter names)
  • systypes (contains column types as displayed in Enterprise Manager)

The database user must have access to these system tables. These tables can also be used to generate database design documents as discussed in another article.

Notes

This web control is a stand-alone Web control. I have also used a modified version of it (in C#) integrated as a feature of Evolutility CRUD framework available on Get Evolutility at SourceForge.net.

History

  • 19th May, 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
I'm a UI engineer with an eye for UX and a passion for model-driven UIs.

I usually build UIs for startups in the San Francisco Bay Area.

My hobby open source project is Evolutility, a minimalist low-code platform with a model-driven UI, a model-driven backend, and a set of models to play with.

More about me on my GitHub page.

Comments and Discussions

 
AnswerRe: My Vote of ZERO Pin
Olivier_Giulieri24-Dec-11 21:09
Olivier_Giulieri24-Dec-11 21:09 
GeneralMy vote of 5 Pin
pingle19-Jul-11 17:42
pingle19-Jul-11 17:42 
GeneralRe: My vote of 5 Pin
Olivier_Giulieri24-Dec-11 21:10
Olivier_Giulieri24-Dec-11 21:10 
GeneralMy vote of 5 Pin
v_stupino1-Jul-11 5:47
v_stupino1-Jul-11 5:47 
GeneralRe: My vote of 5 Pin
Olivier_Giulieri24-Dec-11 21:10
Olivier_Giulieri24-Dec-11 21:10 
GeneralEvolutility.ExportWizard.GetExport Pin
Member 43676219-Oct-10 11:54
Member 43676219-Oct-10 11:54 
GeneralMy vote of 5 Pin
Anurag Gandhi29-Jul-10 4:57
professionalAnurag Gandhi29-Jul-10 4:57 
GeneralMy vote of 5 Pin
ravi1234ravi16-Jul-10 19:07
ravi1234ravi16-Jul-10 19:07 
Excellent work
QuestionNo data to export Pin
Julien Bolduc5-Jul-10 10:12
Julien Bolduc5-Jul-10 10:12 
GeneralFantastic Pin
dbullen21-Jun-10 23:54
dbullen21-Jun-10 23:54 
GeneralRe: Fantastic Pin
Olivier_Giulieri22-Jun-10 3:12
Olivier_Giulieri22-Jun-10 3:12 
QuestionCan we use this control for Windows Forms? Pin
Viji Raj9-Jun-10 9:17
Viji Raj9-Jun-10 9:17 
GeneralExcellent Pin
DecodedSolutions.co.uk26-May-10 22:20
DecodedSolutions.co.uk26-May-10 22:20 
GeneralConnecting to other Database [modified] Pin
Business Consulting26-May-10 3:54
Business Consulting26-May-10 3:54 
GeneralRe: Connecting to other Database Pin
Olivier_Giulieri27-May-10 7:24
Olivier_Giulieri27-May-10 7:24 
GeneralExcellent Pin
DecodedSolutions.co.uk25-May-10 4:40
DecodedSolutions.co.uk25-May-10 4:40 
GeneralNice Control Pin
Brij24-May-10 2:49
mentorBrij24-May-10 2:49 
RantRe: Nice Control Pin
Xiaosheng Wang25-May-10 2:19
Xiaosheng Wang25-May-10 2:19 
GeneralSleek! Pin
Sandeep Mewara20-May-10 19:34
mveSandeep Mewara20-May-10 19:34 
GeneralExcellent Article Pin
linuxjr20-May-10 12:03
professionallinuxjr20-May-10 12:03 
GeneralAwesome Pin
Marcelo Ricardo de Oliveira20-May-10 9:08
mvaMarcelo Ricardo de Oliveira20-May-10 9:08 
GeneralRe: Awesome Pin
Olivier_Giulieri24-May-10 8:21
Olivier_Giulieri24-May-10 8:21 
GeneralNice sharing Pin
Jitendra Zaa20-May-10 1:54
Jitendra Zaa20-May-10 1:54 
GeneralExcellent! Pin
RAND 45586619-May-10 21:30
RAND 45586619-May-10 21:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.