That means I cannot do the following:

VB Code:
  1. <%@ Language=VBScript %>
  2. <HTML>
  3. <HEAD>
  4. <Title></Title>
  5. <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
  6. <script language=vbscript>
  7. Sub button1click()
  8. Session.contents("lang_id")=0
  9. end sub
  10.  
  11. Sub button2_onclick()
  12. Session.contents("lang_id")=1
  13. end sub
  14.  
  15. Sub button3_onclick()
  16. Session.contents("lang_id")=3
  17. end sub
  18.  
  19. Sub button4_onclick()
  20. Session.contents("lang_id")=2
  21. end sub
  22. </script>
  23. <link href="main.css" rel="stylesheet" type="text/css">
  24. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></HEAD>
  25. <BODY   marginwidth="0" marginheight="0">
  26. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  27.   <tr>
  28.         <TD><img src="trimg.gif" width="350" height="1">
  29.         <INPUT class=btn type=Button size=27 value=English name=button1 onclick="button1click()">&nbsp;
  30.         <INPUT class=btn type=Button size=27 value=Chinese name=button2>&nbsp;
  31.         <INPUT class=btn type=Button size=27 value=Hungarian name=button3>&nbsp;
  32.         <INPUT class=btn type=Button size=27 value=Spanish name=button4>&nbsp;
  33.     </TD>
  34.   </tr>
  35.   <tr><td colspan=2 bgcolor=#666666>  
  36.   </tr>
  37. </table>
  38.  
  39. </BODY>
  40. </HTML>