一个简单的测试可能会告诉我们很多的东西。阅读全文>
发表于 @ 2005年04月04日 12:38:00 | 评论( loading... ) | 举报| 收藏
本文描述了一些用于开发可由残疾人士访问的 Windows Media Player 外观的最佳做法。本文介绍了设计辅助外观时需要牢记的一些主要原则,并描述了该播放器所公开的、用于简化辅助外观的编程元素。阅读全文>
发表于 @ 2005年03月27日 22:44:00 | 评论( loading... ) | 举报| 收藏
asp.net web forms 给开发者提供了极好的事件驱动开发模式。然而这种简单的应用程序开发模式却给我们带来了一些小问题,举个例子,在传统的asp应用程序中,你能够通过post方法很容易的把一个值或多个值从一个页面传送到另一个页面,用同样的方法在asp.net中实现有点麻烦。在这里,我们可以通过其他方式来解决这种情形。asp.net为我们提供了三种方式,一种是可以通过用querystring来传送相应的值,再一种是通过session变量来传送相应的值,还有就是通过server.transfer方法来实现。下面分别一一介绍:阅读全文>
发表于 @ 2005年03月27日 20:05:00 | 评论( loading... ) | 举报| 收藏
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... ) | 举报| 收藏