我想使用RegisterStartupScpript方法更改页面宽度和高度:
我试过
ScriptManager.RegisterStartupScript(this, this.GetType(), "default2", "<script height:350; width:200 type=text/javascript> </script>", true);
但它不起作用。你能帮助我吗?我该怎么办?
我发现解决方案非常感谢
ScriptManager.RegisterStartupScript(this, typeof(string), "OPEN_WINDOW", "window.open( 'Default2.aspx?adi=" + adi + "&soyadi=" + soyadi + "&ogrenci_no="+ogrenci_no+"&tel_no="+tel_no+"&sinifi="+sinifi+"', 'height=650,width=850,status=no,toolbar=no,menubar=no,location=no, scrollbars=yes' );", true);
答案 0 :(得分:0)
使用window.open打开新窗口并设置新打开窗口的大小,您可能需要取消阻止弹出窗口。
Live Demo ,按下渲染按钮以弹出
window.open ("http://www.javascript-coder.com","mywindow","menubar=1,resizable=1,width=350,height=250");