-2

我怀疑我可以重定向页面,但我可以把高度和宽度放在那里

response.redirect("Mypage.aspx");

例如

response.redirect("Mypage.aspx",height="300px",width="200px");

我在 asp.net 中做这个,c#

4

2 回答 2

0

您无法使用此方法打开页面,请改用 javascript window.open

   ClientScript.RegisterStartupScript(this.Page.GetType(), "", "window.open('Mypage.aspx','mywindow','menubar=1,resizable=1,width=300,height=200');", true);
于 2013-01-28T06:00:36.123 回答
0

老兄,你迷路了……我建议你先了解web应用程序的服务器端概念,否则学习asp.net的经验可能会令人沮丧……

关于你的问题,没有你想做的事情,页面上的显示是客户端的 html 格式(将样式(例如)应用于 html 元素)

虽然你可以在服务器端映射那些 html ui

于 2013-01-28T06:05:11.853 回答