I have Simple Problem with Declaring Variables. This is my Program.
Code:
<%@ Page Language="VB" %>
<script runat="server">
  Dim stm as String
  stm="prasad"

</script>
<html>
<head>
</head>
<body>
    <form runat="server">
   </form>
</body>
</html>
I got the Following Error
Code:
Compiler Error Message: BC30188: Declaration expected.
Source Error:
Line 2:  <script runat="server">
Line 3:  Dim stm as String
Line 4:  stm="prasad"