10 2013 档案
摘要:在windows下除了有IIS外,还有几个常用的web server: IIS Express, Cassini or HttpListener. 今天有看到 一个开源的叫owin的。它是一个在asp.net小组中的人做的。不过它不仅仅是web server,还有middle ware层,host层。没有太仔细研究。有在本机按说明做了一个简单的测试,是可以工作的。待以后看是否能用得上吧。references:http://code-inside.de/blog-in/2012/06/12/owin-what-is-it-about-and-why-is-it-so-cool/http://ww
阅读全文
摘要:比较快捷的方式是将win8.1下面的firewall关闭。但这并不专业。应该开启firewall高级设置,在高级设置中找到“File and Printer Sharing (Echo Request - ICMPv4-In)”,然后将这一控制项enable即可。注意的是,不同网络类型:private, domain, public. 和不同网络协议:ipv4,ipv6.
阅读全文
摘要:当在我的笔记本上win8.1开启了Hyper-V后,在上面安装了另外一个win8.1. 如果让hyper-V上面的OS共享本机的无线网卡?其实很简单,只要在Hyper-V manager中填加一个internal类型的Virtual swich. 然后将hyper-V上面的OS指定使用此internal virtual switch做为自己的网卡。最后一步就是在本机(host)中将无线网卡共享给这个internal网卡就可以实现Hyper-V中的OS共享本机无线网卡上网的目的了reference:http://www.eightforums.com/tutorials/19359-hyper-
阅读全文
摘要:In OS, we can use sc.exe command to manage mmc windows service. You can start, stop, install, un-install windows service. It is very stateble.Creating a Service:sc.exe create PayCalcService binPath= "C:\Program Files\PaymentCalculation\paycalc.exe" DisplayName= "PaymentCalculationServ
阅读全文
摘要:我們在很多時候,都要顯示TreeView或TreeGrid. 像jqGrid這種控件可以顯示TreeGrid.但是jqGrid要想顯示正確,必須在傳遞給它數據之前,要將數據集按父子關係排序好。即:ID|ParenetID|value-------------------1 |0 |....2 |1 |....3 |2 |....4 |1 |.... 1 private void button1_Click(object sender, EventArgs e) 2 { 3 DataSet ds = new DataSet(); 4 5 ...
阅读全文