Converting DreamWeaver Created Htm File Into aspx file
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:
<script id=clientEventHandlersJS language=javascript>
<!--
function Button1_onclick() {
}
//-->
</script>
instead of it creating an .aspx.vb file and letting me insert my code. I changed all the header information to
VB Code:
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb" Inherits="WebApplication4.WebForm1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
</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!:D