我想打开一个网页,让它无法访问。我使用了这些c#代码但它仍然可以调整大小。这怎么可能?感谢?
protected void Button1_Click(object sender, System.EventArgs e)
{
string url = "Popup.aspx";
string s = "window.open('" + url + "', 'popup_window', 'width=300,height=100,left=100,top=100,resizable=no');";
ClientScript.RegisterStartupScript(this.GetType(), "script", s, true);
}