本帖最后由 opopop1 于 2010-04-29 10:01:21 编辑

解决方案 »

  1.   

    try<td height="23" onclick="self.location.href=self.location.href; window.open('News_List.aspx','right')">资讯管理</td>=》<td height="23" onclick="self.location.href=self.location.href; window.open('News_List.aspx?date='+new Date(),'right')">资讯管理</td>
      

  2.   

    我的意思是 你在之前有 self.location.href=self.location.href; window.open('News_List.aspx','right')的地方 换成self.location.href=self.location.href; window.open('News_List.aspx?date='+new Date(),'right')
      

  3.   

    试试 6 楼的我估计也是这里有问题
      <td height="23" onclick="self.location.href=self.location.href; window.open('News_List.aspx','right')">资讯管理</td>
      

  4.   

    //你直接这样该多好
    if (……)
    {
       ……
       MessageBox.ShowAndRedirect(this, "删除成功!", "show.aspx");
    }//MessageBox类方法
    public static void ShowAndRedirect(Page page,string msg,string url)
    {
                page.ClientScript.RegisterStartupScript(page.GetType(), "message", "<script language='javascript' defer>alert('" + msg + "');window.location=\"" + url + "\"</script>");
    }
      

  5.   

    后面加上 ?date='+new Date()
      

  6.   

    多谢 Sandy945 问题解决,不过我不知道原理是什么?望赐教!!