05 2015 档案

摘要:添加类PageBar.csusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web;namespace System.Web.Mvc{ public st... 阅读全文
posted @ 2015-05-31 15:16 成败在我手 阅读(197) 评论(0) 推荐(0)
摘要:添加ActionDeleteUserInfousing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using MvcApplicationStudy.... 阅读全文
posted @ 2015-05-31 15:05 成败在我手 阅读(189) 评论(0) 推荐(0)
摘要:添加Action EditUserInfousing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using MvcApplicationStudy.M... 阅读全文
posted @ 2015-05-31 14:57 成败在我手 阅读(313) 评论(0) 推荐(0)
摘要:添加ActionShowDetailusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using MvcApplicationStudy.Mode... 阅读全文
posted @ 2015-05-31 14:49 成败在我手 阅读(223) 评论(0) 推荐(0)
摘要:创建控制器UserInfoControllerusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using MvcApplicationStudy... 阅读全文
posted @ 2015-05-31 14:41 成败在我手 阅读(264) 评论(0) 推荐(0)
摘要:创建数据库表如下:生成EF模型//------------------------------------------------------------------------------// // 此代码是根据模板生成的。//// 手动更改此文件可能会导致应用程序中发生异常行为。//... 阅读全文
posted @ 2015-05-31 14:26 成败在我手 阅读(209) 评论(0) 推荐(0)
摘要:asp.net 验证正则表达式整数或者小数:^[0-9]+\.{0,1}[0-9]{0,2}$只能输入数字:"^[0-9]*$"。只能输入n位的数字:"^\d{n}$"。只能输入至少n位的数字:"^\d{n,}$"。只能输入m~n位的数字:。"^\d{m,n}$"只能输入零和非零开头的数字:"^(0... 阅读全文
posted @ 2015-05-28 22:27 成败在我手 阅读(161) 评论(0) 推荐(0)
摘要:Senparc.Weixin.MP SDK从一开始就坚持开源的状态,这个过程中得到了许多朋友的认可和支持。目前SDK已经达到比较稳定的版本,这个过程中我觉得有必要整理一些思路和经验,和大家一起分享。也欢迎大家的补充!SDK还在不断优化升级中,开源项目见:https://github.com/Jeff... 阅读全文
posted @ 2015-05-27 21:30 成败在我手 阅读(259) 评论(0) 推荐(0)
摘要:新建一个Single View Application添加一个空类如下:using System;using UIKit;using Foundation;namespace BasicTable{ public class TableSource : UITableViewSource { st... 阅读全文
posted @ 2015-05-11 20:06 成败在我手 阅读(309) 评论(0) 推荐(0)
摘要:新建空工程如图添加一个MainStoryboard如图设置启动项为MainStoryboard重写AppDelegate的Window方法public override UIWindow Window { get; set; } 从工具箱拖3个View Controlle... 阅读全文
posted @ 2015-05-08 20:24 成败在我手 阅读(134) 评论(0) 推荐(0)
摘要:新建一个空工程,如图新建类using System;using UIKit;namespace TabbedApplication{ public class TabController : UITabBarController { UIViewController tab1,tab2,tab3;... 阅读全文
posted @ 2015-05-08 19:37 成败在我手 阅读(194) 评论(0) 推荐(0)
摘要:新建一个Single View Application项目添加程序集MonoTouch.Dialog.dll引用删除MainStoryboard.storyboard添加空类Task.csusing System;namespace APITest{ public class Task { pub... 阅读全文
posted @ 2015-05-07 20:53 成败在我手 阅读(217) 评论(0) 推荐(0)
摘要:using System;using UIKit;using Foundation;using CoreGraphics;namespace GraphicsAnimation{ public class DrawnImageView : UIView { public DrawnImageVie... 阅读全文
posted @ 2015-05-06 21:33 成败在我手 阅读(175) 评论(0) 推荐(0)
摘要:usingSystem;usingUIKit;usingCoreGraphics;usingFoundation;namespaceGraphicsAnimation{ publicclassTriangleView:UIView { CGPathpath; publicTriangleView... 阅读全文
posted @ 2015-05-06 20:45 成败在我手 阅读(229) 评论(0) 推荐(0)