Environment: Visual Studio 2008 SP1, ASP.NET and JavaScript
I'm trying to do a quick document.write
test but as soon as I add script tags Visual Studio editor doesn't like it. Specifically, the closing script tag? I get those squiggly lines as soon as I enter the closing </script>
tag
<html><head></head><body>
<script type='text/javascript'>
document.write('<html><head><script></script></head><body></body></html>');
</script>
</body>
</html>