上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 24 下一页
该文被密码保护。 阅读全文
posted @ 2013-05-02 16:38 [秦时明月] 阅读(17) 评论(0) 推荐(0) 编辑
摘要: Moon.Orm总论一、Moon.Orm概述Moon.Orm是一个历经三年开发一套.Net Orm框架.但凡众多的智慧都是及其简单的,但不为人所知.这也是Moon.ORM的主要特色:大道至简.不得不承认linq和lambda语句带来的优雅,但同时我们需要承认linq的局限性:linq不是银弹,因为负责的场合linq几乎是做不到的,何况linq生成的sql不一定是你真正要的.(不是敌对linq,而是说实话,正如曾说:实际开发中没有银弹,只有平衡点,适合需求能解决实际情况的架构那就够了).而且我也没有必要再去写一个框架,做一个类似Nhibernate,或者实体框架的东西.做东西我一直认为需要能有. 阅读全文
posted @ 2013-05-01 10:44 [秦时明月] 阅读(2990) 评论(20) 推荐(3) 编辑
摘要: @RenderSection在布局页中占位,此布局页的子页自己去定义自己的呈现块section。@RenderSection在布局页中占位,此布局页的子页自己去定义自己的呈现块section。子页面@section SubMenu{ Hello This is a section implement in About View.} @if (IsSectionDefined("SubMenu")) { @RenderSection("SubMenu", false)//为了防止因缺少节而出现异常,可以给RenderSection()提供第2个参数 } e 阅读全文
posted @ 2013-04-25 11:14 [秦时明月] 阅读(544) 评论(0) 推荐(0) 编辑
摘要: var value= $("input:radio[name='per'][checked]").val();$("input[name='testradio']:eq(1)").attr("checked","checked");//eq(1)表示第二个<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xh 阅读全文
posted @ 2013-04-24 13:36 [秦时明月] 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 1.调整存储过程的设计List<T> ExecuteProToList<T>(List<DbParameter> parameters,String procName);int ExecuteProWithNonQuery()(List<DbParameter> parameters,String procName);DataSet ExecuteProToDataSet()(List<DbParameter> parameters,String procName);2.配置统一说明文档对于配置目前欠缺一个统一全面的说明文档,其中包括 阅读全文
posted @ 2013-04-24 13:21 [秦时明月] 阅读(218) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/clhed/articles/1269415.html 阅读全文
posted @ 2013-04-24 11:34 [秦时明月] 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 转载:http://www.cnblogs.com/dragonwlb/archive/2013/04/04/2999729.html 阅读全文
posted @ 2013-04-05 16:17 [秦时明月] 阅读(273) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-04-03 17:16 [秦时明月] 阅读(32) 评论(0) 推荐(0) 编辑
摘要: #include"stdafx.h"#include<stdio.h>#include<windows.h>#include<time.h>#include<iostream>#include<string>#include<wininet.h>#include<sys\stat.h>#include<cstring>#defineMAXBLOCKSIZE1024usingnamespacestd;#pragmacomment(lib,"wininet.lib" 阅读全文
posted @ 2013-03-23 10:43 [秦时明月] 阅读(1169) 评论(0) 推荐(0) 编辑
摘要: string cookieStr = webBrowser1.Document.Cookie;string[] cookstr = cookieStr.Split(';');foreach (string str in cookstr){} 阅读全文
posted @ 2013-03-03 21:20 [秦时明月] 阅读(151) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 24 下一页