The server-side script tag identifies a section of the document as being script code.

The Active Web server will accept a tag of the form <script language="javascript" runat="server">. This is compatible with most HTML and Script editors. The server will also accept the tag without the language attribute as it assumes that the script language is Javascript compatible.

example:

<script language=”javascript”  runat=”server”>

 var name = “Fred”;

 write(name);

</script>

Comment on this topic

Topic ID: 150107