摘要:
http://hi.baidu.com/csszhang/blog/item/1864b97b1dfd2eff0bd18796.htmlhttp://arshaw.com/fullcalendar/http://blog.sina.com.cn/s/blog_6ab0e36c0100laz0.html 阅读全文
随笔档案-2011年02月
ASP.NET MVC JsonResult
2011-02-22 17:24 by CuiWenKe, 553 阅读, 收藏, 编辑
摘要:
参考:http://www.dev-club.net/xiangxixinxi/1086982010072905531533/201101130437261.html 阅读全文
Html.DropDownList 的用法
2011-02-22 17:01 by CuiWenKe, 807 阅读, 收藏, 编辑
摘要:
参考:1 http://anghoo.blogbus.com/tag/Html.DropDownList/参考:2 http://stackoverflow.com/questions/810265/integrating-jquery-with-ajax-using-mvc-for-ddl-html-dropdownlistControl端:public PartialViewResult SelectShiftView(string id){ List<SelectListItem> items = new List<SelectListItem>(); items 阅读全文
ASP.NET MVC View层学习笔记
2011-02-19 11:08 by CuiWenKe, 964 阅读, 收藏, 编辑
摘要:
1、ViewDataDictionary类是View层核心。2、在标记为From runt="server" 范围中可以使用 ViewData中吗?以及局部刷新(待实验验证)3、View容易混淆的概念(View负责输出数据而非样式)。4、指定View输出(Return View("~/url/other/index.aspx"))。5、在View中使用强数据类型非强类型写法 (Controller & View)Public ActionResultList(){varproducts=new List<Product>();for(inti=0;i<10;i++){ 阅读全文
ASP.NET MVC 扩展服务器控件使用方式
2011-02-18 16:59 by CuiWenKe, 476 阅读, 收藏, 编辑
摘要:
Repeater扩展参考:1、 http://www.cnblogs.com/Kagilo/archive/2009/05/21/mvc-repeater.html2、 http://blog.csdn.net/canduecho/archive/2010/07/04/5712428.aspx 阅读全文
JQUERY 获取form表单text,areatext,radio,checkbox,select值 以及 JavaScrpt获取文本框值
2011-02-18 16:53 by CuiWenKe, 569 阅读, 收藏, 编辑
摘要:
参考: http://www.hikanglin.cn/blog/archives/2008/07/49.htmljquery取得text,areatext,radio,checkbox,select的值,以及其他一些操作; 1.假如我们有如下页面 <inputtype="text"name="textname"id="text_id"value=""> <!--其余的请自行添加.重要的是要有TYPE.NAME.ID等,一般情况这些都是有的--> 2.下面来看怎么取得FORM中的各种值等等; functionget_form_value(){ /*获得TEXT.AREA 阅读全文