网络代理可以重定向到顶级目标?

时间:2012-11-20 14:33:46

标签: lotus-domino lotus lotusscript

我正在从iframe 调用代理,该代理应该将用户重定向到整个页面上的给定页面。

这是一个莲花脚本代理,可以完成他的工作,然后使用常用的重定向:

Print "[http://www.server.com/db.nsf/simpleForm?OpenForm]"

我怎么能提到TARGET(在我的情况下是_top)?

感谢,

1 个答案:

答案 0 :(得分:1)

由于没有给出更好的响应,我分享了我的Javascript解决方案(评论欢迎):

Print  |<html>
<head>
<script language="JavaScript" type="text/javascript">
<!-- 
window.top.location.href = "/myDB.nsf/MyFullRedirectedPage?OpenForm&L=|+lang+....+ |";
// -->
</script>
</head>
<body "style=\"margin:0 ; background:transparent\"">
processing... please wait!    N.B. this text will appear very short time.
</body>
</html>|

我把背景:透明,因为我在iframe中。 在整个页面刷新之前,我不喜欢这个代码几乎闪烁。