<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.iis.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:cs="http://blogs.iis.net/"><channel><title>Search results matching tags 'ASP Classic' and 'asp Classic iis vista errors'</title><link>http://forums.iis.net/search/SearchResults.aspx?o=DateDescending&amp;tag=ASP+Classic,asp+Classic+iis+vista+errors&amp;orTags=0</link><description>Search results matching tags 'ASP Classic' and 'asp Classic iis vista errors'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Help: I cannot view the final output of ASP in Vista Ultimatte. I only see the source code....</title><link>http://forums.iis.net/p/1154505/1890635.aspx#1890635</link><pubDate>Thu, 22 Jan 2009 02:10:33 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1890635</guid><dc:creator>Stecha</dc:creator><cs:applicationKey>iis7_-_classic_asp-41</cs:applicationKey><description>&lt;p&gt;Hi everyone,&lt;/p&gt;&lt;p&gt;First of all, I m a student and I try to do an assignment using ASP. The fact that I wanted to test my ASP pages before uploading them online led me to install IIS. I am using Windows Vista Ultimate and I followed the steps of installing ISS through windows features. However I am not sure if I did it right because I ticked all the boxes in the &amp;quot;&lt;b&gt;World Wide Web Services&lt;/b&gt;&amp;quot;, while in &amp;quot;&lt;b&gt;Web Management Tools&lt;/b&gt;&amp;quot; I just left only &amp;quot;&lt;b&gt;IIS Management Console&lt;/b&gt;&amp;quot; ticked. In addition I left &amp;quot;&lt;b&gt;FTP Publishing Service&lt;/b&gt;&amp;quot; blank as default. I don&amp;#39;t know if there might be a conflict or not. After that I saved my first ASP page in this direction &amp;quot;&lt;b&gt;C:\inetpub\wwwroot&lt;/b&gt;&amp;quot;. Although I had some problems saving files there, I bypassed them by loading notepad as Administrator.&lt;/p&gt;&lt;p&gt;Finally, this is where I face a problem. When I try to load my ASP file through IE7, instead of displaying my normal ASP page, I can only see the source code.&lt;/p&gt;&lt;p&gt;The problem might be obvious for you but not for me. Please help me:) Thanks a lot.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Here is the source code of a very sipmple example I receive in IE7:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;lt;%@ Language=VBScript %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;% Option Explicit %&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;lt;HTML&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;BODY&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;B&amp;gt;Square Roots&amp;lt;/B&amp;gt;&amp;lt;BR&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;%&lt;br /&gt;&amp;nbsp;&amp;nbsp; Dim iLoop&lt;br /&gt;&amp;nbsp;&amp;nbsp; For iLoop = 1 to 10&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Response.Write iLoop &amp;amp; &amp;quot;: &amp;quot; &amp;amp; Sqr(iLoop) &amp;amp; &amp;quot;&amp;lt;BR&amp;gt;&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp; Next&lt;br /&gt;&amp;nbsp;%&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;lt;/BODY&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;/HTML&amp;gt; &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Issues in IIS 7, session and application variables are not maintained - Classic ASP site</title><link>http://forums.iis.net/p/1153501/1886495.aspx#1886495</link><pubDate>Tue, 02 Dec 2008 14:57:21 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1886495</guid><dc:creator>shamshad.ali@softechww.com</dc:creator><cs:applicationKey>iis7_-_classic_asp-41</cs:applicationKey><description>&lt;p&gt;For local development purpose, I ran following script on VISTA, IIS 7:&lt;br /&gt;&lt;br /&gt;&amp;lt;%&lt;br /&gt;for each x in Request.ServerVariables&lt;br /&gt;&amp;nbsp; response.write(&amp;quot;&amp;lt;b&amp;gt;&amp;quot; &amp;amp; x &amp;amp; &amp;quot;:&amp;lt;/b&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;quot; &amp;amp; Request.ServerVariables(x) &amp;amp; &amp;quot;&amp;lt;br&amp;gt;&amp;lt;BR&amp;gt;&amp;quot;)&lt;br /&gt;next&lt;br /&gt;&amp;nbsp;%&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;It does not show me IP of client, Request.ServerVariables(&amp;quot;remote_host&amp;quot;) and &lt;/p&gt;
&lt;p&gt;(Request.ServerVariables(&amp;quot;remote_addr&amp;quot;).&lt;/p&gt;
&lt;p&gt;on my vista&amp;nbsp;I&amp;nbsp;had IPv 6 and IPv4 both enabled. i dropped IPv6 protocole and now Request.ServerVariables(&amp;quot;remote_host&amp;quot;) is showing ::1 value earlier it was showing &amp;quot;A6073E5A-D779-472A-8430-9B03999E4121&amp;quot; AS IP&lt;/p&gt;
&lt;p&gt;Also I noticed that all values assigned to session and application variables defined in global.asa are not available in other pages of my website means session and application variables are not maintaining. It seems that whole server side variables are not working that were initialized with appliction_OnStart, session_OnStart. Wherein whole ASP siter with no change in code is working fine with IIS 6 (xp/win2k3). But this issues comes within IIS 7. Please help how this can be fixed ?&lt;/p&gt;
&lt;p&gt;Shamshad Ali&lt;/p&gt;</description></item><item><title>ASP displaying VB as text</title><link>http://forums.iis.net/p/1152039/1880600.aspx#1880600</link><pubDate>Sun, 28 Sep 2008 18:46:40 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1880600</guid><dc:creator>thegleds</dc:creator><cs:applicationKey>iis7_-_classic_asp-41</cs:applicationKey><description>&lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;I am trying to run Classic ASP VBscript pages from IIS7 and the HTML renders fine but the VBscript tags I up on the page dont seem to work. &lt;/p&gt;&lt;p&gt;When I run the page the VB comes back as text on the screen. There are no errors that appear either. &lt;/p&gt;&lt;p&gt;Can anyonne help me please?&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: HTTP 500 error 0x800700aa loading .asp pages</title><link>http://forums.iis.net/p/1146952/1872067.aspx#1872067</link><pubDate>Wed, 18 Jun 2008 19:48:38 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1872067</guid><dc:creator>dav1_1</dc:creator><cs:applicationKey>iis7_-_classic_asp-41</cs:applicationKey><description>&lt;p&gt;&amp;nbsp;I am having a nearly identical problem. My classic asp pages work until I use one of the Application, session or server objects, then I get the &amp;#39;8002901d&amp;#39; error as well. Checking Event Viewer / Windows Logs / Application, I have the following entry each time the page is executed&lt;/p&gt;&lt;p&gt;&amp;quot;Error: The Template Persistent Cache initialization failed for Application Pool &amp;#39;ASP.NET 1.1&amp;#39; because of the following error: Could not create a Disk Cache Sub-directory for the Application Pool. The data may have additional error codes..&amp;quot;&lt;/p&gt;&lt;p&gt;These asp pages worked fine until I installed Vista Service Pack 1, then all fail. I&amp;#39;ve already lost the restore point to before SP1 was installed, and uninstalling SP1 did not resolve. I&amp;#39;ve tried every suggestion I could find on the web for IIS 7 setup, but nothing so far has fixed this for me. &lt;/p&gt;&lt;p&gt;&amp;nbsp;HELP!!!&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>IIS 7 VISTA OS Database Insert/ Update/ Delete Fails</title><link>http://forums.iis.net/p/1149061/1868170.aspx#1868170</link><pubDate>Fri, 25 Apr 2008 17:16:09 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1868170</guid><dc:creator>qool</dc:creator><cs:applicationKey>iis7_-_classic_asp-41</cs:applicationKey><description>I have a classic ASP application recently moved our development environment from XP to Vista Business.
&lt;br /&gt;&lt;br /&gt;
The application uses ActiveX DLL&amp;#39;s to access data from a SQL 2000 box.
&lt;br /&gt;&lt;br /&gt;
This application is currently running on IIS 7 from a vista business copy.
&lt;br /&gt;&lt;br /&gt;
When I try to access the website from a Vista Machine, it reads the data from the database but when it tries to insert or update the records on the database it fails and gives me the following error:
&lt;br /&gt;&lt;br /&gt;
&amp;quot;3421 Application uses a value of the wrong type for the current operation&amp;quot;
&lt;br /&gt;&lt;br /&gt;
It is happening with all the functions and sub procedures. 
&lt;br /&gt;&lt;br /&gt;
But the weird thing is when I access the same website from an XP/2000/2003 machines it just works fine.
&lt;br /&gt;&lt;br /&gt;
If we deploy the application on IIS 6.0 and access it from Vista the database operations works fine.
&lt;br /&gt;&lt;br /&gt;
I am really stumped on this one. &lt;br /&gt;&lt;br /&gt;

I appreciate if someone can help me.
&lt;br /&gt;&lt;br /&gt;

Thank you</description></item></channel></rss>