摘要:
做开发快一年了,大部分都是有的dan线程,也从来没有考虑去去多线程处理一些东西。今天突然 看到 petshop的多线程 代码就贴出来吧static void Main() { Thread workTicketThread; Thread[] workerThreads = new Thread[threadCount]; for (int i = 0; i < threadCount; i++) { workTicketThread = new Thread(new ThreadStart(ProcessOrders)); // Ma... 阅读全文
摘要:
异步?using System;
using System.Web;
using System.Threading; class HelloWorldAsyncHandler : IHttpAsyncHandler
{ public bool IsReusable { get { return false; } } public HelloWorldAsyncHandler() { } public IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback cb, Obje... 阅读全文
摘要:
做开发已经很长时间了,突然有一天跟java人员做一个接口,post的方式,我使用.net的post的方法实现的。结果一直调用不成功,后来他说你写一个简单html页面。试试可以否。我但是思考了半天,页面可是直接写吗?百度后发现自己out 了<form action="Sample.sample" method="get"> <input type="submit" value="Submit to Sample.sample via Get" />
</form>
<br / 阅读全文
摘要:
这个是判断类 根据上下文中得到的 访问类型 。判断执行那个方法using System;
using System.Web; class HandlerFactory : IHttpHandlerFactory
{ public IHttpHandler GetHandler(HttpContext context, string requestType, String url, String pathTranslated) { IHttpHandler handlerToReturn; if ("get" == conte... 阅读全文
摘要:
在前一个项目中涉及到了,在网络上传送东西,但是想的时用简单的握手+Base64编码加密。但是感觉挺挺简单的就在往上找了一个方法,进行加密。可是发现 /// <summary> /// 将字符串运用 base64算法解密 /// </summary> /// <param name="code_type">编码类型</param> /// <param name="code">已用base64算法加密的字符串</param> /// <returns>解密后的字符串< 阅读全文