<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: NPOI and the Excel 2003 row limit</title>
	<atom:link href="http://www.zachhunter.com/2010/05/npoi-excel-2003-row-limit/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zachhunter.com/2010/05/npoi-excel-2003-row-limit/</link>
	<description>Random Brain Drool</description>
	<lastBuildDate>Thu, 02 Feb 2012 20:52:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Export an ADO.NET DataTable to Excel using NPOI — ASP.NET Chronicles</title>
		<link>http://www.zachhunter.com/2010/05/npoi-excel-2003-row-limit/comment-page-1/#comment-825</link>
		<dc:creator>Export an ADO.NET DataTable to Excel using NPOI — ASP.NET Chronicles</dc:creator>
		<pubDate>Sun, 25 Dec 2011 02:35:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=234#comment-825</guid>
		<description>[...] rows. To export more rows than this you need to use multiple sheets. Zach Hunter’s blog entry, NPOI and the Excel 2003 Row Limit, provided a simple approach to avoiding this problem. In short, I keep track of how many rows [...]</description>
		<content:encoded><![CDATA[<p>[...] rows. To export more rows than this you need to use multiple sheets. Zach Hunter’s blog entry, NPOI and the Excel 2003 Row Limit, provided a simple approach to avoiding this problem. In short, I keep track of how many rows [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Export an ADO.NET DataTable to Excel using NPOI - Scott On Writing.NET</title>
		<link>http://www.zachhunter.com/2010/05/npoi-excel-2003-row-limit/comment-page-1/#comment-467</link>
		<dc:creator>Export an ADO.NET DataTable to Excel using NPOI - Scott On Writing.NET</dc:creator>
		<pubDate>Wed, 08 Jun 2011 03:21:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=234#comment-467</guid>
		<description>[...] rows. To export more rows than this you need to use multiple sheets. Zach Hunter’s blog entry, NPOI and the Excel 2003 Row Limit, provided a simple approach to avoiding this problem. In short, I keep track of how many rows [...]</description>
		<content:encoded><![CDATA[<p>[...] rows. To export more rows than this you need to use multiple sheets. Zach Hunter’s blog entry, NPOI and the Excel 2003 Row Limit, provided a simple approach to avoiding this problem. In short, I keep track of how many rows [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maragatha Meena</title>
		<link>http://www.zachhunter.com/2010/05/npoi-excel-2003-row-limit/comment-page-1/#comment-360</link>
		<dc:creator>Maragatha Meena</dc:creator>
		<pubDate>Wed, 08 Dec 2010 13:36:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=234#comment-360</guid>
		<description>I used regular expressions to match the pattern of td, th , tr etc., in the html table. But if the styles are inline, it dint help. The inline styles were considered as text in the columns.
So I got the dataset from session as you had suggested.
Thanks for the help!</description>
		<content:encoded><![CDATA[<p>I used regular expressions to match the pattern of td, th , tr etc., in the html table. But if the styles are inline, it dint help. The inline styles were considered as text in the columns.<br />
So I got the dataset from session as you had suggested.<br />
Thanks for the help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zach</title>
		<link>http://www.zachhunter.com/2010/05/npoi-excel-2003-row-limit/comment-page-1/#comment-358</link>
		<dc:creator>Zach</dc:creator>
		<pubDate>Mon, 29 Nov 2010 16:59:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=234#comment-358</guid>
		<description>You want to go from a HTML Table to Excel using NPOI?  This is possible, but more work since you&#039;ll have to itterate over the rows/columns to pull out all the values.  Here is a link to &lt;a href=&quot;http://stackoverflow.com/questions/323064/how-to-convert-gridview-to-datatable&quot; rel=&quot;nofollow&quot;&gt;StackOverflow &lt;/a&gt;where you can see somebody going from a GridView (aka: HTML Table) to a DataTable.  You could go directly to NPOI vs. DataTable, just note that it&#039;s a lot of work reading everything out a table since controls can be nested.  Personally, I always try to cache my result set (DataTable, DataSet, Array, etc...) for a few minutes so I can use it for exporting, very quick and easy!</description>
		<content:encoded><![CDATA[<p>You want to go from a HTML Table to Excel using NPOI?  This is possible, but more work since you&#8217;ll have to itterate over the rows/columns to pull out all the values.  Here is a link to <a href="http://stackoverflow.com/questions/323064/how-to-convert-gridview-to-datatable" rel="nofollow">StackOverflow </a>where you can see somebody going from a GridView (aka: HTML Table) to a DataTable.  You could go directly to NPOI vs. DataTable, just note that it&#8217;s a lot of work reading everything out a table since controls can be nested.  Personally, I always try to cache my result set (DataTable, DataSet, Array, etc&#8230;) for a few minutes so I can use it for exporting, very quick and easy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maragatha Meena</title>
		<link>http://www.zachhunter.com/2010/05/npoi-excel-2003-row-limit/comment-page-1/#comment-357</link>
		<dc:creator>Maragatha Meena</dc:creator>
		<pubDate>Mon, 29 Nov 2010 09:07:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=234#comment-357</guid>
		<description>Hi Zach,

here you have provided example on how to use a datatable on export to excel.
How can we export a html table to excel using NPOI?
We are having a classic application where this is required. Can you give us some code sample?</description>
		<content:encoded><![CDATA[<p>Hi Zach,</p>
<p>here you have provided example on how to use a datatable on export to excel.<br />
How can we export a html table to excel using NPOI?<br />
We are having a classic application where this is required. Can you give us some code sample?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

