上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页
摘要: 重写方法:public class MyList : List where T : IConvertible{ public override string ToString() { return "123"; }}调用:MyList list = new MyLis... 阅读全文
posted @ 2016-01-20 12:29 黄者之风 阅读(3307) 评论(0) 推荐(0) 编辑
摘要: 这边文章的目的是给予那些在PCB使用Genesis2000程序脚本开发的人员提供.net平台下的开发方法。目前genesis脚本的开发的语言主要为cshell,perl和tcl,相对于学过c#的人需要学习成本,我打听过用C#开发脚本的接口的价格最少都需要1000块钱,本着开源的思想我吧这几天研究的成... 阅读全文
posted @ 2016-01-11 10:11 黄者之风 阅读(8678) 评论(2) 推荐(0) 编辑
摘要: 先上官方的说明gatewayis a command line utility for sending messages and commands to Genesis processes. The gateway command works between all systems that are... 阅读全文
posted @ 2016-01-11 09:21 黄者之风 阅读(3981) 评论(0) 推荐(0) 编辑
摘要: 本文导读:在.NET运用中经常用到缓存(Cache)对象。有HttpContext.Current.Cache以及HttpRuntime.Cache,HttpRuntime.Cache是应用程序级别的,而HttpContext.Current.Cache是针对当前WEB上下文定义的。HttpRunt... 阅读全文
posted @ 2015-12-21 10:09 黄者之风 阅读(1464) 评论(0) 推荐(0) 编辑
摘要: http://localhost:37977/UrlWrite.ashx?id=9URL重写成下面的访问方式,有利于SEO搜索引擎http://localhost:37977/UrlWrite-8.ashx实现方法(用正则表达式匹配获取当前请求的虚拟路径):/// /// 当一个请求过来的时候会被调... 阅读全文
posted @ 2015-12-20 16:17 黄者之风 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 添加Global文件,名字不要改Global类说明:using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Web;using System.Web.Security;u... 阅读全文
posted @ 2015-12-20 13:21 黄者之风 阅读(732) 评论(0) 推荐(0) 编辑
摘要: Jquery表单序列化1.必须放在form标签内;2.控件必须有name属性;3.控件的value值会提交到服务器;如: $(function () { $("#btnOK").click(function () { var ... 阅读全文
posted @ 2015-12-20 11:50 黄者之风 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 1.创建一个空数组:第一种方法:var str = new Array();第二种方法:var str = [];为数组赋值:str[0] = 111;str[1] = 222;2.创建一个有内容的数组:var str = ["aa", "bb", "cc"];遍历数组:for (var i = 0... 阅读全文
posted @ 2015-12-19 15:33 黄者之风 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 单例类:public class Singleton{ private static Singleton _instance;//定义一个私有Singleton类型字段,此处不实例化 //将构造函数设为private,防止通过new实例化对象 private Singleton()... 阅读全文
posted @ 2015-12-08 16:38 黄者之风 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 缘起: 在数据驱动的web开发中,经常要重复从数据库中取出相同的数据,这种重复极大的增加了数据库负载。缓存是解决这个问题的好办法。但是ASP.NET中的虽然已经可以实现对页面局部进行缓存,但还是不够灵活。此时Memcached或许是你想要的。 Memcached是什么? Memcached是... 阅读全文
posted @ 2015-11-30 17:10 黄者之风 阅读(188) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页