Hi, i don't like asp.net's ability to create htm files. Dreamwaever is MUCH beter. BUT i need/want to use ASP.NET to add my code.

When i open a dreamweaver created htm file into asp.net it opens fine and looks fine but when i double click on a button to insert code it creates a
VB Code:
  1. <script id=clientEventHandlersJS language=javascript>
  2. <!--
  3.  
  4. function Button1_onclick() {
  5.  
  6. }
  7.  
  8. //-->
  9. </script>

instead of it creating an .aspx.vb file and letting me insert my code. I changed all the header information to
VB Code:
  1. <%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb" Inherits="WebApplication4.WebForm1"%>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  3. <HTML>
  4.     <HEAD>
  5.         <title>WebForm1</title>
  6.         <meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
  7.         <meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
  8.         <meta name="vs_defaultClientScript" content="JavaScript">
  9.         <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
  10.  
  11. </HEAD>

But it still isn't acting right. Any idea what i can do to get the HTML editing capapbilites of Dreamweaver and also use VS.NET to code my ASP.Net pages?

Thanks!