C# 如何使html页面不可压缩?

C# 如何使html页面不可压缩?,c#,html,asp.net,C#,Html,Asp.net,我想打开一个网页并使其不可编辑。我使用了这些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

我想打开一个网页并使其不可编辑。我使用了这些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);
 }
可能重复的