随笔分类 -  ASP.NET

关于ASP.NET的知识积累。
ASP.NET权限问题的除错
摘要:这篇文章将的很好, 列在这里备忘. Troubleshooting common permissions and security-related issues in ASP.NET http://support.microsoft.com/kb/910449 阅读全文

posted @ 2010-02-02 22:03 中道学友 阅读(148) 评论(0) 推荐(0) 编辑

最简单的HTML, 最简单的ASPX
摘要:排查分析问题时经常需要用到这样白痴级页面, 呵呵. 以后如有需要, 再逐步改进. 最简单的HTML =============== 代码段<html><body bgcolor="yellow"> <center> <h2> Hello W3Schools!</h2> </center></body></h... 阅读全文

posted @ 2010-02-02 21:26 中道学友 阅读(2683) 评论(0) 推荐(0) 编辑

.NET Web Service
摘要:呵呵, 实在是太忙了, 连抽取重要段落的时间都没有. 看过了, 列下面先. Creating a .NET Web Service http://www.15seconds.com/Issue/010430.htm Add an XML Web service as a data source http://office.microsoft.com/en-us/sharepointdesigner... 阅读全文

posted @ 2010-01-14 18:37 中道学友 阅读(162) 评论(0) 推荐(0) 编辑

ASP.NET中Web Service的安全流程
摘要:The SOAP request is received from the network. This may or may not contain authentication credentials depending upon the type of authentication being used. IIS optionally authenticates the caller by ... 阅读全文

posted @ 2010-01-14 11:18 中道学友 阅读(427) 评论(0) 推荐(0) 编辑

安全概念: Impersonation, Authentication, Authorization
摘要:ImpersonationSometimes we want users' requests to be run in the security context of some other user identity. For that we use impersonation. Impersonation is a process in which a user accesses the res... 阅读全文

posted @ 2010-01-14 10:53 中道学友 阅读(334) 评论(0) 推荐(0) 编辑

web.config文件中的<default proxy> 的知识
摘要:这个元素指定了HTTP请求Internet资源时使用的代理服务器.<configuration> <system.net> <defaultProxy><defaultProxy>元素定义了被GlobalProxySelection类使用的代理服务器信息. 任何没有制定代理属性的HttpRequest都会使用由defaultProxy定义的代理.总的... 阅读全文

posted @ 2010-01-12 14:22 中道学友 阅读(4410) 评论(1) 推荐(0) 编辑

Worker Process, Work threads, Application Pool, AppDomain, Web Site,
摘要:Worker Process ============= A worker process is user-mode code whose role is to process requests, such as processing requests to return a static page, invoking an ISAPI extension or filter, or runnin... 阅读全文

posted @ 2009-12-31 15:57 中道学友 阅读(5277) 评论(0) 推荐(0) 编辑

Web garden 和Web farm
摘要:An application pool that uses more than one worker process is called a Web garden. An application is hosted by multiple servers then it is said to be web farm environment. To configure a Web garden ... 阅读全文

posted @ 2009-12-30 14:01 中道学友 阅读(546) 评论(1) 推荐(1) 编辑

%temp%对ASP.NET有什么用?
摘要:今天遇到一个问题, 客户站点上的所有的web part都显示一个错误信息: Web Part Error: One of the properties of the Web Part has an incorrect format. Windows SharePoint Services cannot deserialize the Web Part. Check the format of th... 阅读全文

posted @ 2009-12-28 19:18 中道学友 阅读(816) 评论(0) 推荐(0) 编辑

阅读笔记- 了解ASP.NET底层架构 之四
摘要:WebForm通过一个在我们前面讲过的ASP.NET框架之上的更加高级的接口实现了HttpHandler, 但是WebForm的Render()方法简单的使用HtmlTextWriter对象去写入它最后最后的输出到Context.Response.OutputStream. 所以尽管是非常时髦的, 甚至是终极如WebForm这样的工具, 也只不过是在Request和Response对象上的高水平的... 阅读全文

posted @ 2009-11-20 23:37 中道学友 阅读(234) 评论(0) 推荐(0) 编辑

阅读笔记- 了解ASP.NET底层架构 之三
摘要:请求在ASP.NET的pipeline中经过的是怎样的处理呢? ================== HttpApplication通过激发你应用程序中不同的事件来对请求的流动负责. HttpApplication.Init()方法建立并开始连续激活一系列的事件, 从而依次地调用并执行事件处理程序. 这些事件处理程序(event handlers)被关联到在global.asax中自动建立起来... 阅读全文

posted @ 2009-11-20 19:27 中道学友 阅读(328) 评论(0) 推荐(0) 编辑

阅读笔记- 了解ASP.NET底层架构 之二
摘要:ASP.NET中的.NET runtime是如何加载起来的呢? ============== 这一点上, 微软没有公开的文档说明. 大致情况应该是这样的, 让我们从头开始: 1. 用户请求到来之前, IIS为每一个站点启动了相应的工作者进程(w3wp.exe) 2. 请求经过IIS基于网址将请求交给相应的站点, 找到站点对应的工作者进程. 3. 工作者进程基于请求的扩展名对请求进行分配, ... 阅读全文

posted @ 2009-11-20 15:28 中道学友 阅读(426) 评论(0) 推荐(0) 编辑

阅读笔记- 了解ASP.NET底层架构 之一
摘要:ASP.NET是什么? ============== ASP.NET是一个复杂的使用托管代码来从头到尾处理Web请求的引擎. 整个ASP.NET引擎是完全建立在托管代码上的,所有的扩展功能也是通过托管代码的扩展来提供的.   ISAPI是什么? ============== ISAPI是一个底层的,非托管的,Win32风格的API. ISAPI的spec很简单, 是为了性能而优... 阅读全文

posted @ 2009-11-19 22:00 中道学友 阅读(407) 评论(0) 推荐(0) 编辑

ISAPI Extension和ISAPI Filter
摘要:An ISAPI server extension is a DLL that can be loaded and called by an HTTP server. ASP.NET就是一种ISAPI Extension。Http Handler类似扩展。 An ISAPI filter is a DLL that runs on an ISAPI-enabled HTTP server to... 阅读全文

posted @ 2009-09-14 23:16 中道学友 阅读(502) 评论(0) 推荐(0) 编辑

ASP.NET知识点的明晰(非原创,东拼西凑的,向这些内容的原创者致敬)
摘要:过了一遍网上的ASP.NET程序员面试130题,筛选出来记几个。 阅读全文

posted @ 2009-07-13 21:15 中道学友 阅读(479) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

技术追求准确,态度积极向上

点击右上角即可分享
微信分享提示