想弹出一个登录的窗口,
窗口里放个button控件
显示这个错误<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" 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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>弹出提示</title>
<style type="text/css">
* {margin:0;padding:0;font-size:12px;}
html,body {height:100%;width:100%;}
#content {background:#f8f8f8;padding:30px;height:100%;}
#content a {font-size:30px;color:#369;font-weight:700;}
#alert {border:1px solid #369;width:300px;height:150px;background:#e2ecf5;z-index:1000;position:absolute;display:none;}
#alert h4 {height:20px;background:#369;color:#fff;padding:5px 0 0 5px;}
#alert h4 span {float:left;}
#alert h4 span#close {margin-left:210px;font-weight:500;cursor:pointer;}
#alert p {padding:12px 0 0 30px;}
#alert p input {width:120px;margin-left:20px;}
#alert p input.myinp {border:1px solid #ccc;height:16px;}
#alert p input.sub {width:60px;margin-left:30px;}
</style>
</head>
<body>
<div id="content">
 <a href="#">注册</a>
</div>
<div id="alert">
 <h4><span>现在注册</span><span id="close">关闭</span></h4>
 <p><label>用户名</label><input type="text" class="myinp" onmouseover="this.style.border='1px solid #f60'"  onfocus="this.style.border='1px solid #f60'" onblur="this.style.border='1px solid #ccc'" /></p>
 <p><label>密 码</label><input type="password" class="myinp" onmouseover="this.style.border='1px solid #f60'"  onfocus="this.style.border='1px solid #f60'" onblur="this.style.border='1px solid #ccc'" /></p>
 <p><input type="submit" value="注册" class="sub" runat="server" id="Submit1" onserverclick="Submit1_ServerClick" /><input type="reset" value="重置" class="sub" id="Reset1" onclick="return Reset1_onclick()" /></p>
    <asp:Button ID="Button1" runat="server" Text="Button" />
</div>
<script type="text/javascript">
/**
*Author:银子
*Date:2007/10/11
*/
var myAlert = document.getElementById("alert");
var reg = document.getElementById("content").getElementsByTagName("a")[0];
var mClose = document.getElementById("close");
reg.onclick = function()
{
  myAlert.style.display = "block";
  myAlert.style.position = "absolute";
  myAlert.style.top = "50%";
  myAlert.style.left = "50%";
  myAlert.style.marginTop = "-75px";
  myAlert.style.marginLeft = "-150px";
  mybg = document.createElement("div");
  mybg.setAttribute("id","mybg");
  mybg.style.background = "#000";
  mybg.style.width = "100%";
  mybg.style.height = "100%";
  mybg.style.position = "absolute";
  mybg.style.top = "0";
  mybg.style.left = "0";
  mybg.style.zIndex = "500";
  mybg.style.opacity = "0.3";
  mybg.style.filter = "Alpha(opacity=30)";
  document.body.appendChild(mybg);
  
  document.body.style.overflow = "hidden";
}
mClose.onclick = function()
{
 myAlert.style.display = "none";
 mybg.style.display = "none";
}
function Reset1_onclick() {
window.open("http://www.baidu.com");
}</script>
</body>
</html>

解决方案 »

  1.   

    Body中放入一个Form runat="server"
      

  2.   

    button   要放在   <form   id=Form1   method=post   runat="server">   
      </form   >   这个里面! 而且每个页面只有一个form标记 
      

  3.   

    不想用 form 用一个 <input type="button"></input>
      

  4.   

    ><input type="submit" value="注册" class="sub" runat="server" id="Submit1" onserverclick="Submit1_ServerClick" /><input type="reset" value="重置" class="sub" id="Reset1" onclick="return Reset1_onclick()" />你看你这:第一个是对的,onserverclick;第二个就粗心错了吧,onclick
      

  5.   

    <form id="form1" runat="server">
    <asp:Button ID="Button1" runat="server" Text="Button" /></form>
      

  6.   

    加上<form runat="server">
    </form>就好了