怎么使新打开的窗口不显示浏览器地址栏工具栏等(只显示窗体内容)

时间:2020-12-10 23:49:35
或者怎么加密象http://www.csdn.net/Expert/PostNew.asp?room=33  这样room=33的显示,加密效果好吗?

12 个解决方案

#1


用中文做查寻字符串,出现在地址栏的时候会是乱码,正常人都不可能看得懂

#2


但是我要传值啊

#3


最好回答:怎么使新打开的窗口不显示浏览器地址栏工具栏等(只显示窗体内容)

#4


<a href="javascript:win=open('你要打开的网页地址');win.focus();">

这样就OK了!

#5


window.open('Test.aspx','newwin','toolbar=no,menubar=no,status=yes,location=no,resizable=no,scrollbars=yes,width=400,height=280');

#6


.net支持吗?

#7


window.open怎么出来?

#8


Response.Write("<script>window.open('Test.aspx','newwin','toolbar=no,menubar=no,status=yes,location=no,resizable=no,scrollbars=yes,width=400,height=280');</script>");

#9


.NET支持的,我有试过。在JS中按hgknight(江雨.net)的写法就行了,也就是将语句包含在<script language=javascript></script>中。

#10


用Response.Write("<script>window.open('Test.aspx','newwin','toolbar=no,menubar=no,status=yes,location=no,resizable=no,scrollbars=yes,width=400,height=280');</script>");
已经解决问题!!顺便问一句关闭新窗口的语句是否Response.Write("<script>window.close</script>");

#11


</script>Response.Write("<script>window.close();</script>");

#12


#1


用中文做查寻字符串,出现在地址栏的时候会是乱码,正常人都不可能看得懂

#2


但是我要传值啊

#3


最好回答:怎么使新打开的窗口不显示浏览器地址栏工具栏等(只显示窗体内容)

#4


<a href="javascript:win=open('你要打开的网页地址');win.focus();">

这样就OK了!

#5


window.open('Test.aspx','newwin','toolbar=no,menubar=no,status=yes,location=no,resizable=no,scrollbars=yes,width=400,height=280');

#6


.net支持吗?

#7


window.open怎么出来?

#8


Response.Write("<script>window.open('Test.aspx','newwin','toolbar=no,menubar=no,status=yes,location=no,resizable=no,scrollbars=yes,width=400,height=280');</script>");

#9


.NET支持的,我有试过。在JS中按hgknight(江雨.net)的写法就行了,也就是将语句包含在<script language=javascript></script>中。

#10


用Response.Write("<script>window.open('Test.aspx','newwin','toolbar=no,menubar=no,status=yes,location=no,resizable=no,scrollbars=yes,width=400,height=280');</script>");
已经解决问题!!顺便问一句关闭新窗口的语句是否Response.Write("<script>window.close</script>");

#11


</script>Response.Write("<script>window.close();</script>");

#12