Watch this example on YouTube:
recently, after converting some code from older version to .Net 4.0 I noticed the following error
to fix it replace
<title></title>
<script type="text/javascript"> <!--
DoSomething();
function DoSomething() {
alert("doing something");
}
--></script>
</head>
with
<title></title>
<script type="text/javascript"> <!--
DoSomething();
function DoSomething() {
alert("doing something");
}
// --></script>
</head>
No comments:
Post a Comment