My page is not working properly, the Client button is not working and it generates this error
//Line 12
//Column 30
//Invalid Character
//Code 0
<%@ 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>My First Page</title>
<meta http-equiv= "content-script-type" content="text/VBScript" />
<script language="VBscript" type="text/VBscript">
// <!CDATA[
function btnClient_onclick() {
document.getElementById("lblclient").innerText = "Changed"
document.getElementById("lblServer").innerText = "Server"
}
// ]]>
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="btnServer" runat="server" Style="z-index: 104; left: 72px; position: absolute;
top: 128px" Text="Server" />
<asp:Label ID="lblServer" runat="server" Style="z-index: 101; left: 168px; position: absolute;
top: 128px" Text="Server"></asp:Label>
<asp:Label ID="lblClient" runat="server" Style="z-index: 102; left: 168px; position: absolute;
top: 176px" Text="Client"></asp:Label>
<input id="btnClient" style="z-index: 103; left: 72px; position: absolute; top: 176px"
type="button" value="Client" onclick="return btnClient_onclick()" />
</div>
</form>
</body>
</html>