sbj0707

Web service Remoting ADO.NET Windows server 2003

导航

2005年8月17日 #

一个关于。NET安全性问题,大家一定看!!!

摘要: 这段代码是 IssueVision 里加密的代码 1// Uses the Data Protection API (DPAPI) to encrypt and decrypt secrets 2// based on the logged in user or local machine. 3 4using System; 5using System.Runtime.Intero... 阅读全文

posted @ 2005-08-17 21:35 IT 阅读(2122) 评论(14) 推荐(0)

2005年8月16日 #

关于一个漂亮的UI

摘要: 这种窗口的UI怎么做的啊,有源码吗??? 阅读全文

posted @ 2005-08-16 21:17 IT 阅读(652) 评论(1) 推荐(0)

2005年8月15日 #

Web service 五种调用方式

摘要: Web Service [WebMethod] public int DoSomeWork(int TimeSpan) { System.Threading.Thread.Sleep(TimeSpan); Random rand=new Random(); return rand.Next(100,1000); } *******************************... 阅读全文

posted @ 2005-08-15 21:14 IT 阅读(1242) 评论(0) 推荐(0)

四种网络数据发送和接受的代码

摘要: Client***************************************************************** try { TcpClient tcpclnt = new TcpClient(); Console.WriteLine("连接....."); tcpclnt.Connect("127.0.0.1",8001); ... 阅读全文

posted @ 2005-08-15 21:10 IT 阅读(1169) 评论(2) 推荐(0)