using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Web;
using?System.Web.UI;
using?System.Web.UI.WebControls;
using?System.Data;
using?MySql.Data.MySqlClient;
...
分类:
数据库 时间:
2014-08-10 13:12:00
阅读次数:
290
以前提到委托,总感觉不好理解,简单意义是上说委托可以理解为函数的指针,可以把一个方法作为一个参数带入到另一个方法中。本人理解,请大牛指1.首先看一个简单的例子using System;using System.Collections.Generic;using System.Linq;using ....
分类:
其他好文 时间:
2014-08-10 03:54:10
阅读次数:
319
MVC页面重定向,主要有以下几种形式: 1.Response.Redirect();方法[csharp]view plaincopyusingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSy...
分类:
Web程序 时间:
2014-08-09 21:26:39
阅读次数:
312
BFSusing System;using System.Collections.Generic;using System.Linq;using System.Text;namespace LH.GraphConsole{ class Program { private s...
分类:
其他好文 时间:
2014-08-09 18:20:28
阅读次数:
215
.NET 有如下使用了自定义扩展HEADER来做验证 server.asmx代码using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Services;usi...
分类:
其他好文 时间:
2014-08-09 18:19:58
阅读次数:
928
DFSusing System;using System.Collections.Generic;using System.Linq;using System.Text;namespace LH.GraphConsole{ class Program { private s...
分类:
其他好文 时间:
2014-08-09 18:17:38
阅读次数:
232
十字链表 简单的说就是邻接表和逆邻接表的合体,解决了原邻接表或者逆邻接表出度和入度的计算无法兼得的问题。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace LH.Gra...
分类:
其他好文 时间:
2014-08-09 15:44:48
阅读次数:
200
一个控制器中,功能最终会落实到一个个Action中实现,最常见的是增删查改操作。这些Action是一个个的方法,一般返回值是ActionResult,并且是public 方法,可以带参数,可以添加元标记,可以结合linq直接访问数据库,可以结合Model进行合法性验证等等,还是比较灵活的。增就是添加...
分类:
Web程序 时间:
2014-08-09 15:32:48
阅读次数:
264
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Script.Serialization;namespace ajax{ /// /// ...
分类:
Web程序 时间:
2014-08-09 13:21:28
阅读次数:
259
邻接表using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace LH.GraphConsole{ public struct AdjacencyListGraph ...
分类:
其他好文 时间:
2014-08-09 13:18:07
阅读次数:
199