PC Review


Reply
Thread Tools Rate Thread

Convert a DataGridView to HTML?

 
 
phrankbooth@hotmail.com
Guest
Posts: n/a
 
      29th Dec 2006
Hello,

Is there a way to convert .Net2's DataGridView into an HTML table?

Any pointers appreciated.

Thanks,
--PhB

 
Reply With Quote
 
 
 
 
=?Utf-8?B?WE9S?=
Guest
Posts: n/a
 
      29th Dec 2006
it is rendered as a html table so you could do something like

stringReader reader = new StringReader();
gridView1.RenderControl(reader);

string html = reader.tostring();

or something like that. look into the renderControl method
 
Reply With Quote
 
phrankbooth@hotmail.com
Guest
Posts: n/a
 
      30th Dec 2006
Found it!

On this page there's nice source code called TableLibrary which does
exactly what I need. Feed in DataGridView and get out HTML table. Nice!

This is the main page:
http://www.windowsforms.net/Default....dex=4&tabid=49

This is the specific link:
HTML Table Generation Library -
http://www.windowsforms.net/Samples/...190&tabindex=4



XOR wrote:
> it is rendered as a html table so you could do something like
>
> stringReader reader = new StringReader();
> gridView1.RenderControl(reader);
>
> string html = reader.tostring();
>
> or something like that. look into the renderControl method


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
convert html string into a html document csgraham74 Microsoft VB .NET 4 22nd Sep 2006 02:46 AM
Convert HTML String to HTML Document And Save csgraham74 Microsoft ASP .NET 2 19th Sep 2006 09:07 AM
Convert HTML -> PlainText (-> HTML) Joerg Battermann Microsoft VB .NET 6 1st Dec 2005 02:30 PM
Convert html to jpeg, tiff, gif and png with HTML Snapshot ActiveX Zhao Sheng Microsoft C# .NET 0 9th Oct 2004 12:31 PM
Convert html to jpeg, tiff, gif and png with Html To Image Zhao Sheng Microsoft C# .NET 0 9th Oct 2004 12:31 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:43 AM.