The code in this article is targeted for the beta version of Microsoft .NET. Some of the code may require reworking in order to function correctly on later versions of the .NET Framework.阅读全文>
发表于 @ 2005年03月25日 14:05:00|评论(loading...)|编辑|举报|收藏
One of the most common challenges that Web developers encounter is maintaining state in the stateless world of HTTP. There have been a number of clever means used to get around the stateless issue, from reposting application data with each request, to using HTTP authentication to map requests to specific users, to using HTTP cookies to preserve the state of a series of requests. One particularly clever way of maintaining state that hides all the challenging work below is to simply use the Micros阅读全文>
发表于 @ 2005年03月25日 13:59:00|评论(loading...)|编辑|举报|收藏