谢谢各位帮忙

解决方案 »

  1.   

    在JS端 传的时候:escape(charString)
      

  2.   

    catch(Exception ex)
    {
    string Error_info_detail=Server.UrlEncode(ex.Message.ToString());
    Response.Redirect("Error_page.aspx?Error_info="+ Error_info_detail);
    }
      

  3.   

    CSDN bug..两个一样的主题
    页面之间传参数就用Server.UrlEncode(url)
      

  4.   

    通过url吗?HttpUtility.UrlEncode (str)
      

  5.   

    楼主说的是通过url传递参数吧?上面已经说了,传递前用UrlEncode方法编码一下。