Visual Studio Intellisense, c#, no code behind. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T21:43:26Z http://stackoverflow.com/feeds/question/84968 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/84968/visual-studio-intellisense-c-no-code-behind 1 Visual Studio Intellisense, c#, no code behind. madcolor 2008-09-17T16:21:01Z 2008-09-17T18:42:36Z <p>If I open a file in Design View (web form), I get intellisense for my display code, but not my script code.. If I open with source code editor I, occasionally, get intellisense within the script tags. </p> <p>Anyone know how to get intellisense working all of the time for all of my code? </p> <p>Been living with this one for a long time.</p> http://stackoverflow.com/questions/84968/visual-studio-intellisense-c-no-code-behind/85073#85073 0 Answer by Ray Hayes for Visual Studio Intellisense, c#, no code behind. Ray Hayes 2008-09-17T16:32:05Z 2008-09-17T16:32:05Z <p>Some service packs have broken Intellisense and in the past I have had to either reinstall the product or repair. Try repair first!</p> http://stackoverflow.com/questions/84968/visual-studio-intellisense-c-no-code-behind/85109#85109 0 Answer by Jon Cage for Visual Studio Intellisense, c#, no code behind. Jon Cage 2008-09-17T16:36:25Z 2008-09-17T16:36:25Z <p>I'm not sure if it helps, but I've been working on some code recently which uses a bunch of projects compiled using NMake. For those, there's an option if you right-click on the project and select the NMake option (I guess you might have a web form option in there?). I found intellisense often wouldn't pick everything up unless I set the right include directories:</p> <ol> <li>Right-click on the project.</li> <li>Select NMake (or whatever it is you 'compile' the form with) from the tree of options on the left of the dialog.</li> <li>In the pane on the right you'll hopefully see a bunch of options under an 'intellisense' listing.</li> <li>Make sure the files you're interested in intellisensing are in a directory which is listed in the 'Include search paths' option.</li> </ol> http://stackoverflow.com/questions/84968/visual-studio-intellisense-c-no-code-behind/85583#85583 1 Answer by alord1689 for Visual Studio Intellisense, c#, no code behind. alord1689 2008-09-17T17:24:03Z 2008-09-17T17:24:03Z <p>What version are you using? Design view is for human-readable elements, you wouldn't be editing code there and therefore wouldn't need intellisense. If you are not using code-behind, you should only have one tag on the page, and you would edit this in Source view. To enable intellisense, add the following on the first line:</p> <pre><code>&lt;%@ Page Language="C#" %&gt; </code></pre> <p>If you change it, the tag will be underlined and it will say that you need to close the file and reopen it.</p> <p>If you are in VS 2008, JavaScript intellisense will be available to you as well. Make sure you specify the language in the tag.</p> http://stackoverflow.com/questions/84968/visual-studio-intellisense-c-no-code-behind/86256#86256 1 Answer by madcolor for Visual Studio Intellisense, c#, no code behind. madcolor 2008-09-17T18:42:36Z 2008-09-17T18:42:36Z <p>VS2008. So far doing a re-install seems to be the best advice. I am using the <code>&lt;%@ Page Language="C#" MasterPageFile="~/common/masterpages/MasterPage.master" %&gt;</code>. When I say design-view I mean that I right+click on the file and choose "view designer" - this gives me access to the toolbox and tabs for designer,split, and code-view (which is the view I primarily work in). In that mode, all of my <code>&lt;asp:</code> tags get intellisense, but then I lose all intellisense within my <code>&lt;script&gt;</code> tags. I've never been able to have intellisense working both within the <code>&lt;script&gt;</code> tags and within my form.</p> <p>I should say that when we create a website, we don't do it through file>new>website.. I mention this because I wonder if VS might configure a website differently when creating it that way vs. pointing VS to an existing set of directories which contain our website. </p>