use javascript, in your 左框架, <script>
function returnFalse() {
    return false;
}function disableLink() {
    var dl = document.links;
    for (var i = 0; i < dl.length; i++) {
        {
            dl[i].onclick = returnFalse;
            if (typeof(dl[i].disabled) != 'undefined') {
                dl[i].disabled =true;
            }
        }
    }
}
</script>in your 右面, you can call parent.frames[0].disableLink();>>>>位于不同浏览器窗口的话能不能通信?the browser does't allow pages from different domains to talk to each other

解决方案 »

  1.   

    请问你所说的左框架的Java script 函数disableLink()可以换成是C#的后台代码吗?
    若我想左框架重定向并发送参数应该怎样写?
      

  2.   

    那你可以用思归的方法调用另一个函数,如:
    function reloadpage(address) {
        document.location=address;
        document.location.reload();
    }
      

  3.   

    response.redirect("")
    行吗?~
      

  4.   

    因为是框架结构,你首先要取得想要重定向的那个框架的句柄才能response.redirect呀!
      

  5.   

    不行啊,编译时出错,说““System.Web.UI.Control”并不包含对“Frames”的定义”