2013年12月6日
摘要: 我们来看两个接口: public interface IActionFilter{ // Methods void OnActionExecuted(ActionExecutedContext filterContext); void OnActionExecuting(ActionExecutingContext filterContext);}public interfac... 阅读全文
posted @ 2013-12-06 17:28 快乐于行 阅读(307) 评论(0) 推荐(0) 编辑
  2013年11月10日
摘要: 泛型,泛型方法。 阅读全文
posted @ 2013-11-10 10:14 快乐于行 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 反射方法! 阅读全文
posted @ 2013-11-10 10:13 快乐于行 阅读(214) 评论(0) 推荐(0) 编辑
摘要: js事件。 阅读全文
posted @ 2013-11-10 10:12 快乐于行 阅读(393) 评论(0) 推荐(0) 编辑
摘要: BOM操作! 阅读全文
posted @ 2013-11-10 10:11 快乐于行 阅读(756) 评论(0) 推荐(0) 编辑
摘要: DOM简单操作 阅读全文
posted @ 2013-11-10 10:10 快乐于行 阅读(233) 评论(0) 推荐(0) 编辑
  2013年11月4日
摘要: SQL常见字符串函数备忘。 阅读全文
posted @ 2013-11-04 09:41 快乐于行 阅读(226) 评论(0) 推荐(0) 编辑
  2013年6月12日
摘要: jquery一些操作备忘 阅读全文
posted @ 2013-06-12 20:59 快乐于行 阅读(281) 评论(0) 推荐(0) 编辑
摘要: public static MvcHtmlString NewTextBox(this HtmlHelper htmlHelper, string name, string value){ var builder = new TagBuilder("input"); builder.Attributes["type"] = "text"; builder.Attribute... 阅读全文
posted @ 2013-06-12 01:47 快乐于行 阅读(370) 评论(0) 推荐(0) 编辑
  2013年6月11日
摘要: 1.后台代码为: public ActionResult GetDate() { return Content(DateTime.Now.ToString()); }在index视图下: @using (Ajax.BeginForm("GetDate", new AjaxOptions() { Confirm = "大爷,您悠着点", Ht... 阅读全文
posted @ 2013-06-11 22:32 快乐于行 阅读(195) 评论(0) 推荐(0) 编辑