上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 19 下一页
摘要: /// /// 创造实例 /// /// 类型 /// 程序集名称 /// 类的全名 /// 构造函数参数 /// public T Creatobject(string asse... 阅读全文
posted @ 2015-12-24 11:16 点点_滴滴 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 首先将sql server DateTime 转换为varchar(50)然后更新转换过的 DateTime字段,UPDATE 表名 SET LastUpdateTime=CONVERT(VARCHAR(50),cast(LastUpdateTime as datetime),120),Create... 阅读全文
posted @ 2015-11-19 20:15 点点_滴滴 阅读(585) 评论(0) 推荐(0) 编辑
摘要: Ctrl + shift + O 阅读全文
posted @ 2015-10-27 10:19 点点_滴滴 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 1.url:http://localhost:8002/名称.asmx(asmx结尾)2.需要引用的命名空间:System.Web.Services3.调用代码:public class DynamicWebService { /// /// 动态... 阅读全文
posted @ 2015-10-26 11:22 点点_滴滴 阅读(422) 评论(0) 推荐(0) 编辑
摘要: 1.url:http://localhost:8002/名称.svc/basic(.svc结尾)2.需要引用的命名空间System.ServiceModel3.调用代码:public class InvokeContext { #region Wcf服务工厂 pub... 阅读全文
posted @ 2015-10-26 11:15 点点_滴滴 阅读(1278) 评论(0) 推荐(0) 编辑
摘要: System.Net.WebException: An exception occurred during a WebClient request. System.UnauthorizedAccessException: Access to the path "路径" is denied.1.权限问... 阅读全文
posted @ 2015-10-22 18:24 点点_滴滴 阅读(203) 评论(0) 推荐(0) 编辑
摘要: http://code.ciaoca.com/jquery/validation_engine/ 阅读全文
posted @ 2015-10-20 12:07 点点_滴滴 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 1.ViewBag 动态数据类型,也就是说可以随便指定属性,前后台传值很是有用2.Layout 属性,定义模版,模版中一般用@RenderBody() 做占位符,用于放置子页面内容3.@model IEnumerable 传实体列表,@model 实体 传单个实体4.ajax post值,或者aja... 阅读全文
posted @ 2015-10-20 09:51 点点_滴滴 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 在模板中 相当于占位符使用方法如下@section scripts{//coding} 阅读全文
posted @ 2015-10-19 18:32 点点_滴滴 阅读(4108) 评论(0) 推荐(1) 编辑
摘要: 1、_Viewstart.cshtml是一个在呈现View文件的时候的启动文件,会在所有View(.cshtml)被执行之前执行,主要用于一些不方便或不能在母版(_Layout.cshtml)中进行的统一操作,譬如你有很多个没有继承关系的母版或不使用母版的单页。2、在_ViewStart.cshtm... 阅读全文
posted @ 2015-10-19 18:30 点点_滴滴 阅读(1892) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 19 下一页