Visual Studio 2008 sp1 classic asp Intellisense and Outlining not functioning - Stack Overflow
most recent 30 from stackoverflow.com
2009-12-18T14:44:40Z
http://stackoverflow.com/feeds/question/781985
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/781985/visual-studio-2008-sp1-classic-asp-intellisense-and-outlining-not-functioning
3
Visual Studio 2008 sp1 classic asp Intellisense and Outlining not functioning
Birk
2009-04-23T14:22:47Z
2009-08-04T16:42:00Z
<p>As the topic suggests I've got VS 2008 with sp1 installed and am not receiving full Intellisense or ANY outlining capabilities when editing classic asp pages. My coworker is also using VS2008sp1 and has outlining working correctly (but he has no idea why)</p>
<p>I've made a screen, you can find here <a href="http://edeneight.com/%5Ftemp/stupidasp.gif" rel="nofollow">Classic asp outlining issue screen shot 1</a></p>
<p>Has anyone else had this problem? Am I missing something simple?</p>
<p>Thanks for your help
-Birk</p>
http://stackoverflow.com/questions/781985/visual-studio-2008-sp1-classic-asp-intellisense-and-outlining-not-functioning/782005#782005
1
Answer by José Basilio for Visual Studio 2008 sp1 classic asp Intellisense and Outlining not functioning
José Basilio
2009-04-23T14:27:07Z
2009-04-23T14:27:07Z
<p>In Visual Studio, go to TOOLS -> OPTIONS -> Text Editor -> Basic -> VB Specific</p>
<p>and check "Enable Outlining Mode"</p>
http://stackoverflow.com/questions/781985/visual-studio-2008-sp1-classic-asp-intellisense-and-outlining-not-functioning/782017#782017
0
Answer by EJB for Visual Studio 2008 sp1 classic asp Intellisense and Outlining not functioning
EJB
2009-04-23T14:30:18Z
2009-04-23T14:30:18Z
<p>I've had the problem in both VS2005 and VS2008 - it comes and goes with no real pattern, and I never found a good solution. Sometimes closing the project and re-starting VS will solve it for a while...but not always.</p>
http://stackoverflow.com/questions/781985/visual-studio-2008-sp1-classic-asp-intellisense-and-outlining-not-functioning/782018#782018
1
Answer by Robert S. for Visual Studio 2008 sp1 classic asp Intellisense and Outlining not functioning
Robert S.
2009-04-23T14:30:25Z
2009-04-23T14:30:25Z
<p>You can reset your settings by going to Tools -> Import/Export Settings -> Reset All Settings. I suggest you back up your current settings just in case.</p>
<p>You can also run <code>devenv /setup</code> from the command-line and it will reset your Intellisense and such.</p>
http://stackoverflow.com/questions/781985/visual-studio-2008-sp1-classic-asp-intellisense-and-outlining-not-functioning/803235#803235
0
Answer by Birk for Visual Studio 2008 sp1 classic asp Intellisense and Outlining not functioning
Birk
2009-04-29T16:40:21Z
2009-04-29T16:45:28Z
<p>The best solution that I've found to work is this. For classic asp code on a page ending with a .asp extension you can manage outlining of code by placing different functions or pieces in an asp script block <code><% %></code>.</p>
<p>Then outlining works as expected for those sections. I would still like to find a better option than this however.</p>
http://stackoverflow.com/questions/781985/visual-studio-2008-sp1-classic-asp-intellisense-and-outlining-not-functioning/1228604#1228604
0
Answer by frustrated for Visual Studio 2008 sp1 classic asp Intellisense and Outlining not functioning
frustrated
2009-08-04T16:42:00Z
2009-08-04T16:42:00Z
<p><%@ Language="VBScript"
[insert boring monotonous code project here]
%></p>
<p>@ Language="VBScript" seems to do the trick for me. Too bad I have to update all my code to include this now...</p>