摘要:
如果你用encodeURI编码的字符串,是可以通过UrlDecode解码出来的,也就是说UrlDecode可以识别encodeURI(js)和UrlEncode(c#)两个编码格式.可以想到,MS在设计这个类库的时候,已经考虑到了会接受到encodeURI的编码,按常理来想的话,既然考虑到了解码,自然会考虑到编码,也即UrlEncode应该提供可以编码成decodeURI可以解码的格式 阅读全文
2007年4月28日 #
2007年4月27日 #
摘要:
2007-04-04 09:05一、目前在ASP.NET中页面传值共有这么几种方式:1、表单提交, .form1.submit();.此种方在ASP。NET中无效,因为ASP。NET的表单总是提交到自身页面,如果要提交到别一页面,需要特殊处理。2、链接地址传送接收页面: string str = Request["param1"]3、Session共享发送页面:Session("param1"... 阅读全文
摘要:
不要使用Response.Redirect,而应该使用Server.Transfere.g// in global.asaxprotected void Application_Error(Object sender, EventArgs e) {if (Server.GetLastError() is HttpUnhandledException)Server.Transfer("MyError... 阅读全文
2007年4月25日 #
摘要:
11: GroupRadioButton selectRadioButton = 2 this.FindControl("selectRadioButton") as GroupRadioButton;342:GroupRadioButton selectRadioButton = 5 (GroupRadioButton)this.FindControl("... 阅读全文
摘要:
无法找到脚本库"/aspnet_client/system_web/1_1_4322/webuivalidation.js".请尝试受动放置此文件,或通过运行"aspnet_regiis -c"从新安装. 在此计算机上必须有管理员权限才能运行此工具.出现此问题是:在项目根目录的文件下aspnet_client 下system_web 下1_1_4322下 没有WebUIValidation.... 阅读全文
2007年4月23日 #
摘要:
1using System; 2using System.Collections; 3using System.ComponentModel; 4using System.Data; 5using System.Drawing; 6using System.Web; 7using System.Web.SessionState; 8using System.Web.UI; 9using Syst... 阅读全文
摘要:
1using System; 2using System.Data; 3using System.Configuration; 4using System.Collections; 5using System.Web; 6using System.Web.Security; 7using System.Web.UI; 8using System.Web.UI.WebControls; 9usin... 阅读全文
2007年4月20日 #
摘要:
信息系统典型的开发架构是: MS SQLSERVER + 存储过程 +DataAccess+ DAL + Model + BLL + UI• 数据库设计 : 在建表的时候,请添加对字段的描述。这将为后来的所有自动创建注释和前台页面做好准备。(字段描述可在codeplus里进行直接录入设置)• 存储过程 :商业逻辑基本不放在这个里面,存储过程的主要作用是完成对表的基本操,包括添加、删除、修... 阅读全文
2007年4月19日 #
摘要:
1 123src="" 是该js的路径 阅读全文