Click here to Skip to main content
15,896,557 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 153.9K   8.1K   162  
A step wizard for ASP.NET to export database objects to CSV, TXT, HTML, XML, or SQL
'  Copyright (c) 2010 Olivier Giulieri - olivier@evolutility.org 

'  This file is part of Evolutility CRUD Framework.

'  Source link <http://www.evolutility.org/download/download.aspx>

'  Evolutility is open source software: you can redistribute it and/or modify
'  it under the terms of the GNU Affero General Public License as published by
'  the Free Software Foundation, either version 3 of the License, or
'  (at your option) any later version.

'  Evolutility is distributed WITHOUT ANY WARRANTY; 
'  without even the implied warranty of MERCHANTABILITY 
'  or FITNESS FOR A PARTICULAR PURPOSE.  
'  See the GNU Affero General Public License for more details.

'  You should have received a copy of the GNU Affero General Public License
'  along with Evolutility. If not, see <http://www.fsf.org/licensing/licenses/agpl-3.0.html>.

'  Commercial licenses may be purchased at www.evolutility.org <http://www.evolutility.org/product/Purchase.aspx>.


Imports System.Reflection
Imports System.Runtime.InteropServices
Imports System.Web.UI

<Assembly: AssemblyTitle("Evolutility Export Wizard")> 
<Assembly: AssemblyDescription("Web Database Export Wizard: ASP.net Web control to export SQL Server tables, views, or queries to XML, CSV, TXT,... and, SQL insert statements.")> 
<Assembly: AssemblyCompany("Olivier Giulieri")> 
<Assembly: AssemblyProduct("ExportWizard")> 
<Assembly: AssemblyCopyright("(c) 2010 Olivier Giulieri - www.evolutility.org")> 
<Assembly: AssemblyTrademark("")> 
<Assembly: CLSCompliant(True)> 
<Assembly: AssemblyCulture("")> 
<Assembly: TagPrefix("Evolutility.ExportWizard", "EVOL")> 

<Assembly: AssemblyVersion("3.3")> 
<Assembly: Guid("F6367465-51C2-44DF-8D00-45B9C2DD2D85")>  
 

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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