方法1: 使用js的扩展方法 ** * json对象转字符串形式 */ function json2str(o) { var arr = []; var fmt = function(s) { if (typeof s == 'object' && s != null) return json2st...
分类:
Web程序 时间:
2014-07-10 11:41:35
阅读次数:
210
原文:MVC生成CheckBoxList并对其验证通过扩展方法,可以让CheckBox水平排列,生成CheckBoxList,正如"MVC扩展生成CheckBoxList并水平排列"一文。但,如何对生成的CheckBoxList验证呢?比如要求至少勾选一项: □ 思路 在强类型视图页中,@Html....
分类:
Web程序 时间:
2014-07-07 22:18:40
阅读次数:
288
原文:MVC应用程序使用Web Services(asmx)这次,我们练习MVC应用程序中,应用web service。先在MVC应用程序中创建一个目录Services,将用来存储Service.asmx。这个Service的方法,可以参考这个《自定义MVC的Helper扩展方法》http://ww...
分类:
Web程序 时间:
2014-07-07 21:02:00
阅读次数:
247
1、什么是HtmlHelper辅助方法?其实就是HtmlHelper类的扩展方法,如下所示:namespace System.Web.Mvc.Html{ public static class FormExtensions//表单相关扩展方法,例如创建表单标签等。 public stat...
分类:
Web程序 时间:
2014-07-02 22:22:27
阅读次数:
348
1、什么是HtmlHelper辅助方法?其实就是HtmlHelper类的扩展方法,如下所示:namespace System.Web.Mvc.Html{ public static class FormExtensions//表单相关扩展方法,例如创建表单标签等。 public stat...
分类:
Web程序 时间:
2014-07-02 14:28:55
阅读次数:
296
注意导入头文件类方法的使用//文件名 UIColor+Expend.h 扩展方法.h@interface UIColor (Expend).m// UIColor+Expend.m #import "UIColor+Expend.h"#pragma mark - 颜色转换 IOS中十六进制的颜...
分类:
移动开发 时间:
2014-07-01 20:09:47
阅读次数:
207
Order By操作适用场景:对查询出的语句进行排序,比如按时间排序 等等。说明:按指定表达式对集合排序;延迟,:按指定表达式对集合 排序;延迟,默认是升序,加上descending表示降序,对应的扩展方法是 OrderBy和OrderByDescending1.简单形式这个例子使用 orderby...
分类:
数据库 时间:
2014-06-28 21:55:23
阅读次数:
264
给类添加扩展方法1、定义一个类Servicepublic class Service { private string _name; public string Name { get { return _name; } ...
分类:
其他好文 时间:
2014-06-28 10:44:20
阅读次数:
132
使用Linq提供的扩展方法Distinct可以去除序列中的重复元素。
该方法具有以下两种重载形式:
(1)public static IEnumerable Distinct(this IEnumerable source) (重载1)
通过使用默认的相等比较器对值进行比较并返回序列中的非重复元素。
(2)publicstatic IQueryable Distinct(this IQue...
分类:
其他好文 时间:
2014-06-22 11:07:47
阅读次数:
258
##1.邮箱注册这里需要扩展User,两种解决办法,1,注册时将email字段内容赋给username,这种瞒天过海型的,另一种就是扩展user,这里介绍django1.5的扩展方法。**1.setting配置** AUTH_USER_MODEL = 'manager.MyUser' ...
分类:
其他好文 时间:
2014-06-22 11:02:42
阅读次数:
288