[求助]这是怎么回事??
我的页面有个关闭按钮<asp:Button ID="ButClose" runat="server" Text="关闭" OnClick="window.close();" /><br />
加上红字后就出错
行 23: <asp:Button ID="ButClear" runat="server" Text="重置" OnClick="ButClear_Click" />
行 24: <asp:Button ID="ButClose" runat="server" Text="关闭" OnClick="ButClose_Click"onclick="window.close();" /><br />
行 26: <br />
行 27: <asp:Label ID="lblMessage" runat="server" Width="177px"></asp:Label></div>
需要在 .aspx.cs 里面写上
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
this.TextUserName.Text = "";
this.TextUserPwd.Text = "";
}
this.ButClose.Attributes.Add("onclick", "window.close();");
}
是ASP.net不能在客户端加脚本吗
还是我写错了
为什么 在 。cs 里面写就行了呢 也实现了关闭!!
等 指点。。!!