asp.net中frameset刷新后内容重复显示
发布网友
发布时间:2022-04-21 00:38
我来回答
共2个回答
热心网友
时间:2022-04-21 02:07
这种情况 可能是你的session值超时了
然后你后台重定向到一个页面去了 结果那个页面就出现在页面里面了
比如你登录界面是login 你的主页面是index页面 session超时过后 index右边出现login页面
解决方案:
<script type="text/javascript">
if (top.location.toString().indexOf("login.aspx") < 1) {
top.location = "login.aspx";
}
</script>
希望对你有所帮助
热心网友
时间:2022-04-21 03:25
应该是你在Page_Load里面写的硬编码的内容,并且没有判断ispostback吧。