<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.2" -->
<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"
		>
	<channel>
		<title>Feed Informer: Forums &#187; Tag: ASP - Recent Posts</title>
		<link>http://feed.informer.com/forums/tags.php?tag=asp</link>
		<description>Feed Informer: Forums &#187; Tag: ASP - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Aug 2026 01:48:02 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.2</generator>
				<atom:link href="http://feed.informer.com/forums/rss.php?tag=asp" rel="self" type="application/rss+xml" />

		<item>
			<title>lastday on "Cache ASP Pages"</title>
			<link>http://feed.informer.com/forums/topic.php?id=222#post-921</link>
			<pubDate>Mon, 24 Dec 2007 10:29:48 +0000</pubDate>
			<dc:creator>lastday</dc:creator>
			<guid isPermaLink="false">921@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>You may close this forum topic. I found a way to Cache my pages so that I'm only pulling feeds from Feed Digest once every hour.  Thank you.
</p>]]></description>
					</item>
		<item>
			<title>admin on "Cache ASP Pages"</title>
			<link>http://feed.informer.com/forums/topic.php?id=222#post-917</link>
			<pubDate>Wed, 19 Dec 2007 09:09:47 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">917@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>We have a PHP script that does this, although it's not officially supported. We do not have anything for ASP though, mostly because we have no access to any Microsoft servers and aren't familiar with ASP. I know some of our users use ASP, but the chances of them replying here are pretty low, I'd imagine.</p>
<p>Anyone with a reasonable knowledge of ASP would be able to put together some sort of proxy/cache that temporary stores the digests on your site within a couple of hours, I'd say, as the PHP one took less time than that.
</p>]]></description>
					</item>
		<item>
			<title>lastday on "Cache ASP Pages"</title>
			<link>http://feed.informer.com/forums/topic.php?id=222#post-915</link>
			<pubDate>Tue, 18 Dec 2007 19:13:48 +0000</pubDate>
			<dc:creator>lastday</dc:creator>
			<guid isPermaLink="false">915@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>My page at <a href="http://www.LastDayReport.com" rel="nofollow">http://www.LastDayReport.com</a> loads very slow at times.  I spoke to the administrator of my server and he looked at the web page code.  He said it loads slow because it is loading 10 ASP feeds from FeedDigest every time someone visits the page.  He suggested that I code my web page to Cache so my server is not requesting all the data each time someone visits the site.  Can you offer a way of doing this?  Or can you suggest someone to contact to assist me with this?</p>
<p>Thanks Frank
</p>]]></description>
					</item>
		<item>
			<title>lastday on "Making ASP Work"</title>
			<link>http://feed.informer.com/forums/topic.php?id=213#post-884</link>
			<pubDate>Mon, 10 Dec 2007 14:44:45 +0000</pubDate>
			<dc:creator>lastday</dc:creator>
			<guid isPermaLink="false">884@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>Thank you worked perfectly.  Have a good day.
</p>]]></description>
					</item>
		<item>
			<title>admin on "Making ASP Work"</title>
			<link>http://feed.informer.com/forums/topic.php?id=213#post-880</link>
			<pubDate>Fri, 07 Dec 2007 22:13:41 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">880@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>Try this:</p>
<p>The first one will look like usual..</p>
<p>&#60;%<br />
dim Http<br />
Set Http = Server.CreateObject("Microsoft.XMLHTTP")<br />
Http.Open "Get","http://app.feeddigest.com/digest3/GS7O8YMJB7.html",False<br />
Http.Send()<br />
Response.Write(Http.ResponseText)<br />
%&#62;</p>
<p>But for the second one and all others afterwards remove the first two lines of code, like so:</p>
<p>&#60;%<br />
Http.Open "Get","http://app.feeddigest.com/digest3/PHPT9NBDMD.html",False<br />
Http.Send()<br />
Response.Write(Http.ResponseText)<br />
%&#62;
</p>]]></description>
					</item>
		<item>
			<title>lastday on "Making ASP Work"</title>
			<link>http://feed.informer.com/forums/topic.php?id=213#post-878</link>
			<pubDate>Fri, 07 Dec 2007 17:24:14 +0000</pubDate>
			<dc:creator>lastday</dc:creator>
			<guid isPermaLink="false">878@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>Ok, Here are two of them.  If I use one or the other, the page works great.  If both are on the web page at the same time the page gives the error.  This is important for me to figure out.  Right now I'm using JAVA code on the page and the page loads very slow since there are 16 feeds loading at one time.  I'm told by many people that using ASP will make the page load faster. So, I'm need to convert from the JAVA feeds to ASP feeds.  Thank you so much for trying to assist.  Frank</p>
<p>Code # 1<br />
----------------<br />
&#60;%<br />
dim Http<br />
Set Http = Server.CreateObject("Microsoft.XMLHTTP")<br />
Http.Open "Get","http://app.feeddigest.com/digest3/GS7O8YMJB7.html",False<br />
Http.Send()<br />
Response.Write(Http.ResponseText)<br />
%&#62;</p>
<p>Code # 2<br />
-----------------<br />
&#60;%<br />
dim Http<br />
Set Http = Server.CreateObject("Microsoft.XMLHTTP")<br />
Http.Open "Get","http://app.feeddigest.com/digest3/PHPT9NBDMD.html",False<br />
Http.Send()<br />
Response.Write(Http.ResponseText)<br />
%&#62;
</p>]]></description>
					</item>
		<item>
			<title>admin on "Making ASP Work"</title>
			<link>http://feed.informer.com/forums/topic.php?id=213#post-877</link>
			<pubDate>Fri, 07 Dec 2007 17:12:38 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">877@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>I must admit the ASP code was supplied by a user who was familiar with the technology. I have no personal experience of ASP or anything that runs ASP to test on. If I had to guess, I'd say perhaps it doesn't like the variables being defined twice. Can you paste the ASP code you're using here and I'll see if I can come up with an idea.
</p>]]></description>
					</item>
		<item>
			<title>lastday on "Making ASP Work"</title>
			<link>http://feed.informer.com/forums/topic.php?id=213#post-876</link>
			<pubDate>Fri, 07 Dec 2007 16:19:40 +0000</pubDate>
			<dc:creator>lastday</dc:creator>
			<guid isPermaLink="false">876@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>I loaded ASP onto my web page with Feed Digest ASP code and it worked perfectly and quickly.  But, if I load more than one ASP feed on my web page I receive an error and the page does not display.  See error below.  This is not good as I need the ability to insert multiple feeds into my web page.</p>
<p>Please advise.<br />
Frank</p>
<p>------------<br />
Internal Server Error<br />
The server encountered an internal error or misconfiguration and was unable to complete your request.</p>
<p>Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.</p>
<p>More information about this error may be available in the server error log.<br />
----------------------
</p>]]></description>
					</item>
		<item>
			<title>admin on "How Do I Make the ASP Script Work?"</title>
			<link>http://feed.informer.com/forums/topic.php?id=207#post-862</link>
			<pubDate>Thu, 29 Nov 2007 16:09:36 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">862@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>The results of when people complained to GoDaddy a year ago are in the old Feed Digest forum thread:</p>
<p><a href="http://www.feeddigest.info/oldforums/3_1238_0.html" rel="nofollow">http://www.feeddigest.info/oldforums/3_1238_0.html</a></p>
<p>I believe they initially claimed it was us, but we actually moved datacenters since then and it still didn't work. I'm guessing they have a pretty conservative firewall policy for stuff like this. Perhaps they have a proxy server and/or some source code that they advise clients to use, so it's worth asking about that as it should be possible to use their proxy server if they have one with some minor code adjustments.
</p>]]></description>
					</item>
		<item>
			<title>lastday on "How Do I Make the ASP Script Work?"</title>
			<link>http://feed.informer.com/forums/topic.php?id=207#post-861</link>
			<pubDate>Thu, 29 Nov 2007 14:17:43 +0000</pubDate>
			<dc:creator>lastday</dc:creator>
			<guid isPermaLink="false">861@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>I just tried your suggestion and they are blocking that also, see below the code I used.  Why are they doing this?  What advantage is it to them?  I'm sure they do not care but I will be calling them later today to request they stop blocking Feeddigest.  I'm sure it will not do a bit of good.</p>
<p>Do you have any other possible workaround that I could try?</p>
<p>&#60;%<br />
dim Http<br />
Set Http = Server.CreateObject("Microsoft.XMLHTTP")<br />
Http.Open "Get","http://app.feeddigest.com.nyud.net:8090/digest3/GS7O8YMJB7.html",False<br />
Http.Send()<br />
Response.Write(Http.ResponseText)<br />
%&#62;
</p>]]></description>
					</item>
		<item>
			<title>admin on "How Do I Make the ASP Script Work?"</title>
			<link>http://feed.informer.com/forums/topic.php?id=207#post-860</link>
			<pubDate>Thu, 29 Nov 2007 12:27:08 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">860@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>For what it's worth, GoDaddy has had this policy in place for over a year now.
</p>]]></description>
					</item>
		<item>
			<title>admin on "How Do I Make the ASP Script Work?"</title>
			<link>http://feed.informer.com/forums/topic.php?id=207#post-859</link>
			<pubDate>Thu, 29 Nov 2007 12:23:35 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">859@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>Oh, yes. GoDaddy has blocked us. See this:</p>
<p><a href="http://www.feeddigest.info/oldforums/3_1238_0.html" rel="nofollow">http://www.feeddigest.info/oldforums/3_1238_0.html</a></p>
<p>We used to have a workaround that proxied through a third party (a.k.a. app4.feeddigest.com) but this is no longer active. One workaround that sometimes works for GoDaddy users is to route the digests through Coral cache, like so:</p>
<p><a href="http://app.feeddigest.com.nyud.net:8090/digest3/GS7O8YMJB7.html" rel="nofollow">http://app.feeddigest.com.nyud.net:8090/digest3/GS7O8YMJB7.html</a></p>
<p>instead of</p>
<p><a href="http://app.feeddigest.com/digest3/GS7O8YMJB7.html" rel="nofollow">http://app.feeddigest.com/digest3/GS7O8YMJB7.html</a></p>
<p>Note that just ".nyud.net:8090" is being added in to the URL.
</p>]]></description>
					</item>
		<item>
			<title>lastday on "How Do I Make the ASP Script Work?"</title>
			<link>http://feed.informer.com/forums/topic.php?id=207#post-858</link>
			<pubDate>Wed, 28 Nov 2007 23:56:58 +0000</pubDate>
			<dc:creator>lastday</dc:creator>
			<guid isPermaLink="false">858@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>I have tried many different things today.  I even loaded up other ASP code on my website and it worked.  I have an idea.  My website is hosted by GoDaddy, could it be that GoDaddy is blocking Feeddigest?  Could that be the problem???  If it is the case, could there be a workaround some how?
</p>]]></description>
					</item>
		<item>
			<title>admin on "How Do I Make the ASP Script Work?"</title>
			<link>http://feed.informer.com/forums/topic.php?id=207#post-857</link>
			<pubDate>Wed, 28 Nov 2007 20:18:34 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">857@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>Try renaming it to use .aspx as the extension. Supposedly that extension is for ASP .NET. I must admit I know very little about these technologies, so it's a bit of a stab in the dark. Failing that, the error I'm seeing about not being able to load resource might indicate some issue with accessing us from your host's server. But try .aspx first.
</p>]]></description>
					</item>
		<item>
			<title>lastday on "How Do I Make the ASP Script Work?"</title>
			<link>http://feed.informer.com/forums/topic.php?id=207#post-856</link>
			<pubDate>Wed, 28 Nov 2007 16:42:12 +0000</pubDate>
			<dc:creator>lastday</dc:creator>
			<guid isPermaLink="false">856@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>I took a blank page and saved it as an ASP page.  I put one of my scripts in the page and received an error when I made it live.  The script I used was PX3VVRYCRN and I chose the ASP VBscript.  Here is the page: <a href="http://www.lastdayreport.com/asp-test-page.asp" rel="nofollow">http://www.lastdayreport.com/asp-test-page.asp</a></p>
<p>I do have ASP support on the server.  Can you see what I might be doing wrong?  Located below is the actual raw code from the page.</p>
<p>&#60;html&#62;</p>
<p>&#60;head&#62;<br />
&#60;meta http-equiv="Content-Language" content="en-us"&#62;<br />
&#60;meta http-equiv="Content-Type" content="text/html; charset=windows-1252"&#62;<br />
&#60;title&#62;asp-test-page&#60;/title&#62;<br />
&#60;/head&#62;</p>
<p>&#60;body&#62;</p>
<p>&#60;p&#62;&#60;u&#62;&#60;b&#62;asp-test-page&#60;/b&#62;&#60;/u&#62;&#60;/p&#62;<br />
&#60;p&#62;&#160;&#60;/p&#62;<br />
&#60;p&#62;&#160;&#60;/p&#62;<br />
&#60;%<br />
dim Http<br />
Set Http = Server.CreateObject("Microsoft.XMLHTTP")<br />
Http.Open "Get","http://app.feeddigest.com/digest3/GS7O8YMJB7.html",False<br />
Http.Send()<br />
Response.Write(Http.ResponseText)<br />
%&#62;<br />
&#60;/body&#62;</p>
<p>&#60;/html&#62;
</p>]]></description>
					</item>
		<item>
			<title>admin on "How Do I Make the ASP Script Work?"</title>
			<link>http://feed.informer.com/forums/topic.php?id=207#post-855</link>
			<pubDate>Wed, 28 Nov 2007 16:30:50 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">855@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>As with the JavaScript, it's just a case of copying and pasting the supplied code onto a page. In the case of PHP, ASP, and other technologies, however, you have to ensure your Web hosting provider supports these technologies. Secondly, you have to make sure the page itself supports these technologies. For example, PHP code will often not run unless it is on a page with a file extension of .php. Likewise with ASP, the extension is typically .asp. There are workarounds for this in both cases, but it requires a little work.
</p>]]></description>
					</item>
		<item>
			<title>lastday on "How Do I Make the ASP Script Work?"</title>
			<link>http://feed.informer.com/forums/topic.php?id=207#post-854</link>
			<pubDate>Wed, 28 Nov 2007 15:19:43 +0000</pubDate>
			<dc:creator>lastday</dc:creator>
			<guid isPermaLink="false">854@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>I was wondering if there is someone to assist in showing me how to make ASP inclusion code work on my webpage?  I have the Javascript working but with multiple Java scripts loading at one time it slows the page down.  I would like to use the ASP code as that loads at a server level.  But, I don't know how to use ASP.<br />
Frank
</p>]]></description>
					</item>
		<item>
			<title>admin on "The download of the specified resource has failed"</title>
			<link>http://feed.informer.com/forums/topic.php?id=68#post-298</link>
			<pubDate>Fri, 25 May 2007 09:54:41 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">298@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>(Unless, of course, you can report you are still noticing the issue :))
</p>]]></description>
					</item>
		<item>
			<title>admin on "The download of the specified resource has failed"</title>
			<link>http://feed.informer.com/forums/topic.php?id=68#post-297</link>
			<pubDate>Fri, 25 May 2007 09:54:25 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">297@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>It's not always necessarily one ISP or the other, as they pass through many others en route. This can be an occasional problem between the UK and the US, for example, where the interconnects temporarily fail leading to broken routes for short periods of time. I briefly looked into this issue and couldn't see any problems, but being hosted in the UK, you are likely to have a longer route than many users, but this problem hasn't seemed to reemerge in the last couple of days so there is not much to check out.</p>
<p>There is some ASP code, yes, if you look on the Get Code page for your digest it should be there :)
</p>]]></description>
					</item>
		<item>
			<title>davemartyn on "The download of the specified resource has failed"</title>
			<link>http://feed.informer.com/forums/topic.php?id=68#post-296</link>
			<pubDate>Fri, 25 May 2007 05:36:22 +0000</pubDate>
			<dc:creator>davemartyn</dc:creator>
			<guid isPermaLink="false">296@http://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>Actually I am coding ASP and not PHP. Is there a solution for ASP too?</p>
<p>Did you manage to trace the route through the networks to see if there issues between my ISP and you ?</p>
<p>They are a large and well respected ISP and I doubt that their connections would be a poblem.
</p>]]></description>
					</item>

	</channel>
</rss>
