Visual Studio - Markup syntax highlighting inside script[type:txt/html] - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T08:12:55Z http://stackoverflow.com/feeds/question/678801 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/678801/visual-studio-markup-syntax-highlighting-inside-scripttypetxt-html 1 Visual Studio - Markup syntax highlighting inside script[type:txt/html] chief7 2009-03-24T19:11:04Z 2009-11-06T18:05:44Z <p>Does anyone know how or if its possible for Visual Studio 2008 to highlight the html syntax inside a script block of type "text/html" just like any other markup on an aspx/html page. I'm using the script block to house my templates for client-side templating.</p> http://stackoverflow.com/questions/678801/visual-studio-markup-syntax-highlighting-inside-scripttypetxt-html/1689310#1689310 0 Answer by Justin Grant for Visual Studio - Markup syntax highlighting inside script[type:txt/html] Justin Grant 2009-11-06T18:05:44Z 2009-11-06T18:05:44Z <p>Two ideas come to mind, assuming the page itself is an ASP.NET page (and not a plain HTML page) :</p> <ol> <li>create a custom control which emits the <code>script</code> tag and end-tag. By using a custom control, you'll fool the IDE into not knowing about the <code>script</code> tag, and so you'll get the same syntax coloring as the enclosing page's HTML</li> <li>extract the script block's contents into a user control, and place an instance of that user control inside the script block. Since VS doesn't know that the user control's content will be inside a script block, you'll get syntax coloring.</li> </ol> <p>I like the first option better, as it doesn't force you to split your page into multiple files.</p> <p>If it's a plain HTML page, there's not many easy ways to do this. If "not easy" is OK, then you can alwasy create an <a href="http://msdn.microsoft.com/en-us/library/ms227673.aspx" rel="nofollow">HttpModule</a> which replaces a placeholder tag in the source code (e.g. <code>&lt;myscript&gt;</code>) with, upon output to the user, a real text/html script tag.</p>