摘要:
1、使用查询字符串实现页面传值 就是通过问号传参,使用这种方式建议对要传递的参数进行url编码,传过去再解码 比如: 1)前台a标签传参数 <a href="One.aspx?name=张三&pwd=123">登录</a> 2)前台js脚本传参数 window.location.href="One. 阅读全文
摘要:
Server 表示当前页面的服务器对象 是HttpServerUtility类的实例,HttpServerUtility的父类Page 常用方法 1、HtmlEncode();对字符串进行html编码 比如:有字符串是这样的: string str = "<span style='color: re 阅读全文