john.net

博客园 首页 新随笔 联系 订阅 管理
  5 Posts :: 0 Stories :: 8 Comments :: 0 Trackbacks

公告

05 2009 档案

摘要: //View页面代码如下[代码][代码]阅读全文
posted @ 2009-05-21 23:16 john.net 阅读(845) | 评论 (4) 编辑

摘要: public class SubColor { public static Color FromArgb(string color) { int[] a =new int[4]; int[] b =new int[8]; string rg1 = "#[a-fA-F0-9]{8}"; Regex r1 = new Regex(rg1); if (r1.IsMatch(color)) { for (...阅读全文
posted @ 2009-05-21 12:35 john.net 阅读(402) | 评论 (0) 编辑

摘要: 1.扩展方法必须在非泛型静态类中定义2.扩展方法必须是静态的3.不能在静态类中声明实例成员public static class PubMethod { public static string GetIP(this Controller ctrl) { string ip; if (ctrl.HttpContext.Request.ServerVariables["HTTP_VIA"] != n...阅读全文
posted @ 2009-05-20 13:05 john.net 阅读(324) | 评论 (0) 编辑

摘要: 异常如下:System.Data.Services.Client.DataServiceRequestException: 处理此请求时出错。 ---> System.Data.Services.Client.DataServiceClientException:silverlight DataService调用出错,这种情况一般都是权限不够在DataService中public stati...阅读全文
posted @ 2009-05-20 12:56 john.net 阅读(269) | 评论 (0) 编辑