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.
 
Back
Top