您正在查看 ".net - asp.net" 分类下的文章
2007-10-19 0:00
http://www.kowitz.net/archive/2006/03/08/ihttpmodule-vs-ihttphandler.aspx
The proof of concept IHTTPModule friendly url rewriter for SUB using regular expressions.
For my previous post regarding friendly urls see here.
Edit: To read more on this topic see my next post here.
There are very i |
2007-10-17 0:23
http://msdn2.microsoft.com/en-us/library/xsbfdd8c(VS.71).aspx |
2007-10-06 12:58
为什么这么说呢?首先,我们要了解浏览器是如何处理内容的。在浏览器中显示的内容有 HTML、有 XML、有 GIF、还有 Flash
……那么,浏览器是如何区分它们,绝对什么内容用什么形式来显示呢?答案是 MIME Type,也就是该资源的媒体类型。
媒体类型通常是通过 HTTP 协议,由 Web 服务器告知浏览器的,更准确地说, | |
2007-09-11 14:41
http://www.cnblogs.com/edobnet/archive/2007/08/20/69138.html
最近要做一个与联通的WAP接口
我选择用ASP.NET开发,ASP.NET开发WAP站点,实在简单,就是一个移动控件的运用,根本不用懂WML语法.唯一不同的,就是一个ASPX文件可以支持多个FORM,不同FORM之间可以切换,
最后ASP.NET根据访问的设备,输出不同的内容,
如果用IE访问就输出HTML,手机访问,输出WML,
不过在开发过程中也遇到了很多问题,一些问题总结如下:
|
2007-09-11 10:13
2007-09-02 17:26
2007-06-17 20:56
ASP.NET 2.0 introduces a new concept known as Master Pages, in which a common base master file is created to provide a consistent layout for all the pages in your application. Once you isolate the look and feel and standard behavior for all the pages in your application, you can move them to a master page. In the master page, you also add placeholders (known as ContentPlaceHolders) for the content (or child pages) to add their custom content. When users reque |
2007-05-23 11:11
HttpHandler Factory
You can generate a new handler instance for each HTTP request by creating a class that implements the IHttpHandlerFactory interface. In the following example, a HttpHandler factory is used to create different handlers for an HTTP GET request and an HTTP POST request. One of the handlers is an instance of the |
2007-05-23 11:08
ASP.NET Request Processing
ASP.NET maps HTTP requests to HttpHandlers. Each HttpHandler enables processing of individual HTTP URLs or groups of URL extensions within an application. HttpHandlers have the same functionality as ISAPI extensions with a much simpler programming model. The following table shows examples of the HttpHandlers provided by ASP.NET.
|
2007-05-18 18:58
<
compilation debug="true"> |