Click on Submit Button html page it calls the asp.net page

well friends (asp.net vb )
i have html page i want to on submit user click s on it then call the aspx.net page but it shows error
XML Parsing Error: not well-formed
Location: file:///E:/newsite/newsite/InquirySend.aspx
Line Number 1, Column 2:<%@ Page Language=“VB” AutoEventWireup=“false” CodeFile=“InquirySend.aspx.vb” Inherits=“InquirySend” %>
-^

html is designed on front page nadd aspx page is on visual studio
my idea is that all the text box nad controls are in html page when user click submit it called the aspx page n code will run its simply shows response.redirect(“field_name”)

html page code is here

<form name=“form1” method=“POST” action=“InquirySend.aspx”>

there r 2 pages html develop in front page n aspx.net develop in vs 2005

now in html i want when i click on submit button aspx this page is called where database code is written on it executes but showing error
XML Parsing Error: not well-formed
Location: file:///C:/Documents%20and%20Settings/irfan/Desktop/new_page_2.aspx
Line Number 1, Column 2:<%@ Page Language=“VB” AutoEventWireup=“false” CodeFile=“new_page_2.aspx.vb” Inherits=“new_page_2” %>
-^

html page code
<html>

<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=windows-1252”>
<title>New Page 1</title>
</head>

<body>

<form method=“POST” action=“new_page_2.aspx”>

&lt;p&gt;&lt;input type="submit" value="Submit" name="B1"&gt;&lt;input type="reset" value="Reset" name="B2"&gt;&lt;/p&gt;

</form>

</body>

</html>
aspx code is

<%@ Page Language=“VB” AutoEventWireup=“false” CodeFile=“new_page_2.aspx.vb” Inherits=“new_page_2” %>

<!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>

&lt;/div&gt;
&lt;/form&gt;

</body>
</html>

i want to html then aspx page is called and data executed

You kind of lost me, but could you show me the complete HTML and ASPX page code? When you do, put them in the “code” block to make the reading easier on the eyes.