委托: 托付其他人做这件事 ,包括 托付自己 ,即 一个方法 可以 调用 没有关系的其他方法 , 也可以 将委托传递过去 ,回调自己的方法 ,且 可以自定义参数 ,非常方便 互相传值, 适合解耦 关系。 示例: public delegate void ChangeMoney(object s, i Read More
declare @tablename varchar(200)declare @sql varchar(2000)declare cur_t cursor forselect name from sysobjects where xtype= 'U ' and status> =0 and name Read More
select * from ( select mvqr.VoteQuestionId,mvqr.AnswerSolution from JY_MemberVoteQuestionRef as mvqr where mvqr.MemberVoteId in (select MemberVoteId f Read More
@MvcHtmlString.Create() Read More
protected static string headimg = string.Empty; 这里用到 static ,下面如果这样写 object himg = DBUtility.DbHelperSQL.GetSingle(hstr); if (himg != null) { headimg Read More
当Sql Server数据库定义 数据 为 bit 类型时, 编写代码时 要用 true or false 赋值。例如: OffTheShelf 定义类型为 bit 后台赋值时 OffTheShelf=true; or OffTheShelf= false; 需要如此赋值。此时,按照 true ... Read More
将 type 类型 定义为 number 类型后, 只显示 数字输入框。 Read More
这两个的区别 是button 不会自动提交表单数据,只会执行 onclick 里面的事件处理,如果要提交数据,需要加上 document.form1.submit(); 等submit 会自动提交表单数据,使用它的时候要加上验证 ,放回 验证 return ture ; 或 return fal... Read More
.ashx 文件,默认不可使用 Session ,需要使用Session 时, 需要引用 接口 IRequiresSessionState 例如:publicclassAddHouseInfo:IHttpHandler,IRequiresSessionState{}使用 Session 时, Ht... Read More
json 格式:1) 并列的数据之间用逗号(", ")分隔。2) 映射用冒号(": ")表示。3) 并列数据的集合(数组)用方括号("[]")表示。4) 映射的集合(对象)用大括号("{}")表示。Json 先是最小的数据 即 "Name":"小五台山" 这些最小的数据用(“,”)隔开。 "Plac... Read More