摘要: StreamReader sr = null; StreamWriter sw = null; HttpWebResponse wr = null; string strpostdata = "__VIEWSTATE=%2FwEPDwUKMTc0MzU1MDk5NWRkmk%2BVYL... 阅读全文
posted @ 2008-12-19 15:55 肚肚 阅读(354) 评论(0) 推荐(0) 编辑
摘要: .Net开发中的多线程编程进行一个简单的总结不需要传递参数,也不需要返回参数 我们知道启动一个线程最直观的办法是使用Thread类,具体步骤如下:ThreadStart threadStart=new ThreadStart(Calculate);Thread thread=new Thread(threadStart); thread.Start(); public void Cal... 阅读全文
posted @ 2008-12-19 15:27 肚肚 阅读(144) 评论(0) 推荐(0) 编辑