Visual Studio Intellisense, c#, no code behind. - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T21:43:26Zhttp://stackoverflow.com/feeds/question/84968http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/84968/visual-studio-intellisense-c-no-code-behind1Visual Studio Intellisense, c#, no code behind.madcolor2008-09-17T16:21:01Z2008-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#850730Answer by Ray Hayes for Visual Studio Intellisense, c#, no code behind.Ray Hayes2008-09-17T16:32:05Z2008-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#851090Answer by Jon Cage for Visual Studio Intellisense, c#, no code behind.Jon Cage2008-09-17T16:36:25Z2008-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#855831Answer by alord1689 for Visual Studio Intellisense, c#, no code behind.alord16892008-09-17T17:24:03Z2008-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><%@ Page Language="C#" %>
</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#862561Answer by madcolor for Visual Studio Intellisense, c#, no code behind.madcolor2008-09-17T18:42:36Z2008-09-17T18:42:36Z<p>VS2008. So far doing a re-install seems to be the best advice. I am using the <code><%@ Page Language="C#" MasterPageFile="~/common/masterpages/MasterPage.master" %></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><asp:</code> tags get intellisense, but then I lose all intellisense within my <code><script></code> tags. I've never been able to have intellisense working both within the <code><script></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>