<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Classic ASP: "Push" File Downloads from A Directory Outside the Application Root</title>
	<link>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/</link>
	<description>ls /usr/lolcat</description>
	<pubDate>Wed, 20 Aug 2008 02:10:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Ronnell</title>
		<link>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-10255</link>
		<dc:creator>Ronnell</dc:creator>
		<pubDate>Tue, 24 Jun 2008 16:18:35 +0000</pubDate>
		<guid>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-10255</guid>
		<description>I agree with everybody else, I could not find this anywhere on google and this was the answer to all my questions. Thanks a million!</description>
		<content:encoded><![CDATA[<p>I agree with everybody else, I could not find this anywhere on google and this was the answer to all my questions. Thanks a million!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Inamorty</title>
		<link>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-7115</link>
		<dc:creator>Inamorty</dc:creator>
		<pubDate>Fri, 22 Feb 2008 16:27:03 +0000</pubDate>
		<guid>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-7115</guid>
		<description>Generally, google is as useful as a one-legged man in an arse-kicking competition for finding info like this quickly but today i've hit the jackpot. Thanks a million dude!</description>
		<content:encoded><![CDATA[<p>Generally, google is as useful as a one-legged man in an arse-kicking competition for finding info like this quickly but today i've hit the jackpot. Thanks a million dude!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andeh</title>
		<link>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-593</link>
		<dc:creator>Andeh</dc:creator>
		<pubDate>Thu, 06 Sep 2007 23:22:51 +0000</pubDate>
		<guid>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-593</guid>
		<description>Been looking for something like this for past 2 days.

Threw it on my Dev site, changed it a bit, and works like a charm.

Thanks :D</description>
		<content:encoded><![CDATA[<p>Been looking for something like this for past 2 days.</p>
<p>Threw it on my Dev site, changed it a bit, and works like a charm.</p>
<p>Thanks <img src='http://blog.netnerds.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chrissy</title>
		<link>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-592</link>
		<dc:creator>Chrissy</dc:creator>
		<pubDate>Thu, 19 Jul 2007 04:43:18 +0000</pubDate>
		<guid>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-592</guid>
		<description>David,
EXCELLENT Solution! Thanks so much!</description>
		<content:encoded><![CDATA[<p>David,<br />
EXCELLENT Solution! Thanks so much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-591</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 25 Jun 2007 05:33:09 +0000</pubDate>
		<guid>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-591</guid>
		<description>Thanks for the example. This really helped me move along with a project. I was able to get around the buffering limit simply by reading and writing in chunks which should probably be done anyway. Instead of the one BinaryWrite call, replace with the following:

Do While Not objStream.EOS And Response.IsClientConnected
    Response.BinaryWrite objStream.Read(1024)
    Response.Flush()
Loop

I no longer receive the buffering limit message.</description>
		<content:encoded><![CDATA[<p>Thanks for the example. This really helped me move along with a project. I was able to get around the buffering limit simply by reading and writing in chunks which should probably be done anyway. Instead of the one BinaryWrite call, replace with the following:</p>
<p>Do While Not objStream.EOS And Response.IsClientConnected<br />
    Response.BinaryWrite objStream.Read(1024)<br />
    Response.Flush()<br />
Loop</p>
<p>I no longer receive the buffering limit message.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chrissy</title>
		<link>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-590</link>
		<dc:creator>Chrissy</dc:creator>
		<pubDate>Mon, 12 Feb 2007 01:25:21 +0000</pubDate>
		<guid>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-590</guid>
		<description>Hey Lee,
You are  right..sorry about that, I did a mass replace and replaced one too many variables. The following line

"Content-Disposition","attachment; strFileName=" &#38; strFileName

should read
"Content-Disposition","attachment; filename=" &#38; strFileName

I will update the code.

Chrissy</description>
		<content:encoded><![CDATA[<p>Hey Lee,<br />
You are  right..sorry about that, I did a mass replace and replaced one too many variables. The following line</p>
<p>"Content-Disposition","attachment; strFileName=" &#38; strFileName</p>
<p>should read<br />
"Content-Disposition","attachment; filename=" &#38; strFileName</p>
<p>I will update the code.</p>
<p>Chrissy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-589</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Sun, 11 Feb 2007 23:59:42 +0000</pubDate>
		<guid>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-589</guid>
		<description>Good article and code.   Do you know if your going to use mp3 files how I can get it so it saves as a mp3?  Right now with your code it just saves the file as the name of the script (file.asp).   It would be nice to save as songname.mp3.  Anythoughts?</description>
		<content:encoded><![CDATA[<p>Good article and code.   Do you know if your going to use mp3 files how I can get it so it saves as a mp3?  Right now with your code it just saves the file as the name of the script (file.asp).   It would be nice to save as songname.mp3.  Anythoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bonny</title>
		<link>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-588</link>
		<dc:creator>Bonny</dc:creator>
		<pubDate>Thu, 08 Feb 2007 09:59:14 +0000</pubDate>
		<guid>http://blog.netnerds.net/2007/01/classic-asp-push-file-downloads-from-directory-outside-of-the-web-root/#comment-588</guid>
		<description>Hai Dude,

That was a good example..Easy to understand.. Nice presentation.. This is the first time i do mail to a persons article..Keep up your good work.. All these stuff will help us to get projects done in correct time and will give a rescue from our senior people :) LOL !!!!!!

Anyway thanks a lot..

Bye</description>
		<content:encoded><![CDATA[<p>Hai Dude,</p>
<p>That was a good example..Easy to understand.. Nice presentation.. This is the first time i do mail to a persons article..Keep up your good work.. All these stuff will help us to get projects done in correct time and will give a rescue from our senior people <img src='http://blog.netnerds.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> LOL !!!!!!</p>
<p>Anyway thanks a lot..</p>
<p>Bye</p>
]]></content:encoded>
	</item>
</channel>
</rss>
