<?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 tag 'ASP-VISTA HELP'</title><link>http://forums.iis.net/search/SearchResults.aspx?o=DateDescending&amp;tag=ASP-VISTA+HELP&amp;orTags=0</link><description>Search results matching tag 'ASP-VISTA HELP'</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>Re: #include directive in IIS7</title><link>http://forums.iis.net/p/1152142/1881057.aspx#1881057</link><pubDate>Thu, 02 Oct 2008 20:45:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1881057</guid><dc:creator>Justin2020</dc:creator><cs:applicationKey>iis7_-_classic_asp-41</cs:applicationKey><description>&lt;p&gt;I discovered a solution. If I change the included filename&amp;#39;s extension to anything other than &amp;#39;inc&amp;#39; and &amp;#39;asp&amp;#39;, it works.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Access DB connection Error</title><link>http://forums.iis.net/p/1149934/1871957.aspx#1871957</link><pubDate>Tue, 17 Jun 2008 22:30:01 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1871957</guid><dc:creator>ShotoCon</dc:creator><cs:applicationKey>iis7_-_classic_asp-41</cs:applicationKey><description>&lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;I developed a piece of software on my old machine using IIS on Server 2003 (Virtual PC Platform) and have moved it to my new machine to play with.&amp;nbsp; Unfortunately, MSVPC not installable on Vista so using IIS 7.&amp;nbsp; Although I am able to display ASP pages, I am not able to process any information from the access databaes Im using in the back end.&lt;/p&gt;&lt;p&gt;Original message being returned was along these lines:&lt;/p&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Problem occured whilst processing URL. Please contact System administrator&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Followed advice in other threads on this forum and turned off friendly error messages, this was then returned:&lt;/p&gt;&lt;p&gt;&lt;font face="Arial" size="2"&gt;
&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;font face="Arial" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Microsoft OLE DB Provider for ODBC Drivers&lt;/font&gt; &lt;font face="Arial" size="2"&gt;error &amp;#39;80004005&amp;#39;&lt;/font&gt;&lt;/b&gt; 
&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;font face="Arial" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; [Microsoft][ODBC Microsoft Access Driver] Disk or 
network error.&lt;/font&gt;&lt;/b&gt; 
&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;font face="Arial" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; /quizCreate.asp&lt;/font&gt;&lt;font face="Arial" size="2"&gt;, line 
40&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;The code line it is refering to is of course the db connection opening, so here is the code and all lines before pertaining to it:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;b&gt;accessDb = &amp;quot;eBug.mdb&amp;quot;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; myDSN = &amp;quot;DRIVER={Microsoft Access Driver (*.mdb)};&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; myDSN = myDSN &amp;amp; &amp;quot;DBQ=&amp;quot; &amp;amp; server.mappath(accessDb)&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Set dbConnection = Server.CreateObject(&amp;quot;ADODB.Connection&amp;quot;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; dbConnection.Open myDSN - &lt;/b&gt;this is line 40&lt;/p&gt;&lt;p&gt;Figured that it was because I was using an Access 2003 database and only have Office (including Access) 2007 on this machine. (is this assumption correct???)&lt;br /&gt; &lt;/p&gt;&lt;p&gt;Downloaded &amp;amp; installed the Access Database Connection stuff from the microsoft website, saved the original db as an Access 2007 DB and changed the connection settings to this:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;b&gt;accessDb = &amp;quot;eBug.acccdb&amp;quot;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; myDSN =&amp;quot;Provider = Microsoft.ACE.OLEDB.12.0;&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; myDSN = myDSN &amp;amp; &amp;quot;Data Source = &amp;quot; &amp;amp; Server.mappath(accessDb)&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Set dbConnection = Server.CreateObject(&amp;quot;ADODB.Connection&amp;quot;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; dbConnection.Open myDSN&lt;/b&gt;&lt;/p&gt;&lt;p&gt;New error message now:&lt;/p&gt;&lt;p&gt;&lt;font face="Arial" size="2"&gt;
&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Arial" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;b&gt; Microsoft Office Access Database Engine&lt;/b&gt;&lt;/font&gt;&lt;b&gt; &lt;font face="Arial" size="2"&gt;error 
&amp;#39;80004005&amp;#39;&lt;/font&gt;&lt;/b&gt; 
&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;font face="Arial" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Unspecified error&lt;/font&gt;&lt;/b&gt; 
&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;font face="Arial" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; /destroyDB.asp&lt;/font&gt;&lt;font face="Arial" size="2"&gt;, line 
31&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Dont worry that its in a different file, all my files were using the same connection settings to the same database, I am only using this one as an example as it is the one open at this time.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Every user on the machine has full control to this folder, have even run the grant user access command prompts posted in other threads.&lt;/p&gt;&lt;p&gt;Still have no idea why I cannot access information in the database.&amp;nbsp; If you need any more information please let me know and ill happily post it, really hope someone can help me out with this.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;br /&gt;BTW - was I correct in having to upgrade the DB to Access 2007 one, would be really really handy if i didnt have to and could still use 2003 (even if i dont have office 2003 installed) as a lot of my old projects that use access as their DB are configured to access a 2003 DB using the first method shown here.&lt;/p&gt;&lt;p&gt;Cheers&lt;/p&gt;</description></item><item><title>Why isn't IIS 7.0 able to handle .ASP files by default? </title><link>http://forums.iis.net/p/1149883/1871771.aspx#1871771</link><pubDate>Sun, 15 Jun 2008 15:33:07 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1871771</guid><dc:creator>Starchild22</dc:creator><cs:applicationKey>iis7_-_classic_asp-41</cs:applicationKey><description>I have recently upgraded my OS from XP PRO sp3 to Vista Ultimate x86.
When I was working with XP I could access and work with my .ASP files by default using IIS (I think it was ver. 6,0, in contrast to 7.0 that comes with Vista). But now I get some kind of error, as follows:
http://i25.tinypic.com/5vvv3q.jpg

Oh and I do have .NET framework (ver. 3.0) installed and enabled.
Help please?
</description></item><item><title>Re: classic asp on iis 7  windows vista ultimate- help please!!!!!!!</title><link>http://forums.iis.net/p/1072547/1871730.aspx#1871730</link><pubDate>Sat, 14 Jun 2008 01:44:25 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1871730</guid><dc:creator>sherryqueen31</dc:creator><cs:applicationKey>iis7_-_classic_asp-41</cs:applicationKey><description>&lt;p&gt;Hello &lt;strong&gt;thomad,&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp; I just happend to see your help comment in here, while searching for help as same as Reisel. You did a great job in analysing and trouble shooting. However in my case the &amp;lt;% = Now%&amp;gt;&amp;nbsp; is working fine. What I did is I make a separate asp with just &amp;lt;%now%&amp;gt; as you suggested and it worked fine. So I copied the other command line you mentioend &amp;lt;%windir%system..... into my orginal asp page&amp;nbsp;with the database connection codes.&amp;nbsp; I wasn&amp;#39;t very clear anyway where to put those code. So I added to the the datebase connection asp page and it didnt&amp;#39; work. Could you please tell me where do I add this&amp;nbsp;&amp;nbsp; &amp;quot;&lt;/strong&gt;%windir%\system32\inetsrv\appcmd set config -section:system.applicationHost/applicationPools -applicationPoolDefaults.processModel.loadUserprofile:false&amp;quot;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Your help is greatly appreciated.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; Thank you.&lt;/p&gt;
&lt;p&gt;Sherry&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item></channel></rss>