2008年1月11日
摘要: 3种方法: 1.设置web.config文件。 ...... ...... 2.传递中文之前,将要传递的中文参数进行编码,在接收时再进行解码。 >> 进行传递 string Name = "中文参数"; Response.Redirect("B.aspx?Name="+Server.UrlEncode(Name)); >> 进行接收 string Name = Reque... 阅读全文
posted @ 2008-01-11 22:46 -only- 阅读(254) 评论(1) 推荐(0) 编辑