html button回传
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<script language ="javascript" type ="text/jscript" >
function get()
{
document.getElementById("TextBox1").value="aa";
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<input id="Submit1" onclick="get()" type="submit" value="submit" />
</form>
</body>
</html>
点出Submit1页面怎么会刷新?