VBscript syntax in ASP.net?
ie: in <% %>'s
defining it <script="VBscript"></script>
I've tried all these different ways but none of them seem to work.
By this point I really don't mind whether I use "codebehind" or have it all in one file.
Doing just the <html> markup tags seem to generate errors in Visual Studio, so I've often been using the defualt markup tags which are
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" runat="server" Text="Button" /></div>
</form>
</body>
</html>
Any links to source code for using VBscript w/ these tags would be much appreciated!

