keyword not highlighting

  • Thread starter Thread starter CreativeMind
  • Start date Start date
C

CreativeMind

hi,
i deleted the code from aspx file, not from codebehind.
i just typed <script language="javascript"> function abc() {return
false;}</script>.
keywords function and return are not highlighting. what could be
possible reasons?? i'm using VS2008.
thx
 
keywords have some special colors like script and language are shown
in red colors. if they are not in their default color , means there is
some syntax problem..similarly function , return and false are shown
in blue colors. but there is no apparently syntax problem in my short
code.

<script language="text/javascript">
function asdf()
{
return true;
}
</Script>
thx
 
Other than you have spelled </Script> with a capital 'S'...

thx mark

i closed visualstudio for some time then re-opened my
application..it's working right. no problem is there now.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top