<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_.Net 我来啦</title><subtitle type="text">C# 你将和我一起走过春夏秋冬</subtitle><id>http://feed.cnblogs.com/blog/u/26370/rss</id><updated>2009-10-28T01:55:33Z</updated><author><name>小罗</name><uri>http://www.cnblogs.com/154691780/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/154691780/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/26370/rss"/><entry><id>http://www.cnblogs.com/154691780/archive/2009/09/09/1563264.html</id><title type="text">学习CRYPTO</title><summary type="text">1,CertOpenSystemStore打开系统最常用的证书存储区域。假如需要满足复杂的需要，请看CertOpenStore 　　HCERTSTORE WINAPI CertOpenSystemStore( 　　HCRYPTPROV hprov, //CSP句柄，NULL为默认句柄，或者由CryptAcquireContext返回 　　LPTCSTR szSubsystemProtocol //...</summary><published>2009-09-09T06:30:00Z</published><updated>2009-09-09T06:30:00Z</updated><author><name>小罗</name><uri>http://www.cnblogs.com/154691780/</uri></author><link rel="alternate" href="http://www.cnblogs.com/154691780/archive/2009/09/09/1563264.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/154691780/archive/2009/09/09/1563264.html"/></entry><entry><id>http://www.cnblogs.com/154691780/archive/2009/09/07/1561690.html</id><title type="text">C#中使用网络函数 （第一部分 用户函数）[翻译]</title><summary type="text">作者：Michael Bright 原文：http://www.csharphelp.com/archives2/archive439.html 本文将着重介绍Win32 API库中涉及网络管理的函数。首先我要讲一讲在.Net框架中管理用户的两个方法，第一种是Active Directory方法，这种方法要求你安装Active Directory。如果你打算管理一个小网络上的用户，或者一个未安装A...</summary><published>2009-09-07T03:23:00Z</published><updated>2009-09-07T03:23:00Z</updated><author><name>小罗</name><uri>http://www.cnblogs.com/154691780/</uri></author><link rel="alternate" href="http://www.cnblogs.com/154691780/archive/2009/09/07/1561690.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/154691780/archive/2009/09/07/1561690.html"/></entry><entry><id>http://www.cnblogs.com/154691780/archive/2009/09/07/1561684.html</id><title type="text">C#图片处理类</title><summary type="text">using System;using System.Collections.Generic;using System.Drawing;using System.Drawing.Imaging;using System.IO;using System.Drawing.Drawing2D;namespace Silent.Web.Controllers.Common{ /**//// &amp;lt;summ...</summary><published>2009-09-07T03:20:00Z</published><updated>2009-09-07T03:20:00Z</updated><author><name>小罗</name><uri>http://www.cnblogs.com/154691780/</uri></author><link rel="alternate" href="http://www.cnblogs.com/154691780/archive/2009/09/07/1561684.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/154691780/archive/2009/09/07/1561684.html"/></entry><entry><id>http://www.cnblogs.com/154691780/archive/2009/08/02/1536877.html</id><title type="text">在WINCE或Mobile下面获取当前目录</title><summary type="text">转自网上的方法方法1：Directory.GetCurrentDirectory()。这个方法只能在.NET的完整版中使用，NETCF中不支持该功能，调用时会引发异常。方法2：System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase)。这个方法是MSDN中给出的针对NETCF平台的，当在PC...</summary><published>2009-08-02T04:55:00Z</published><updated>2009-08-02T04:55:00Z</updated><author><name>小罗</name><uri>http://www.cnblogs.com/154691780/</uri></author><link rel="alternate" href="http://www.cnblogs.com/154691780/archive/2009/08/02/1536877.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/154691780/archive/2009/08/02/1536877.html"/></entry><entry><id>http://www.cnblogs.com/154691780/archive/2008/01/21/1047903.html</id><title type="text">（翻译）从底层了解ASP.NET体系结构</title><summary type="text">前言关于ASP.NET的底层的工作机制，最近园子里讨论的甚是火热。相信很多人都看过Rick Strahl先生的一篇经典之作：A low-level Look at the ASP.NET Architecture，经Rick Strahl先生同意，我把他的这篇文章翻译成中文，希望能够给想深入了解ASP.NET工作机制的朋友一点帮助。特别说明：翻译此文的目的仅仅是为了给广大的ASP.NET爱好者提供...</summary><published>2008-01-21T15:08:00Z</published><updated>2008-01-21T15:08:00Z</updated><author><name>小罗</name><uri>http://www.cnblogs.com/154691780/</uri></author><link rel="alternate" href="http://www.cnblogs.com/154691780/archive/2008/01/21/1047903.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/154691780/archive/2008/01/21/1047903.html"/></entry><entry><id>http://www.cnblogs.com/154691780/archive/2008/01/21/1047833.html</id><title type="text">采用HttpModules来重写URLs</title><summary type="text">据说通过HttpModules可以将类似于：http://www.infotouch.cn/detail.aspx?id=120 的URL地址重写为：http://www.infotouch.cn/detail/120.aspx 。这样最直接的好处就是可以让搜索引擎搜索到页面，因为搜索引擎对？之后的参数不太理睬。今天尝试了一下，发现一个需要注意的问题，就是HttpModules只能对特定扩展名的U...</summary><published>2008-01-21T13:58:00Z</published><updated>2008-01-21T13:58:00Z</updated><author><name>小罗</name><uri>http://www.cnblogs.com/154691780/</uri></author><link rel="alternate" href="http://www.cnblogs.com/154691780/archive/2008/01/21/1047833.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/154691780/archive/2008/01/21/1047833.html"/></entry><entry><id>http://www.cnblogs.com/154691780/archive/2008/01/21/1047397.html</id><title type="text">使用会话状态(一)</title><summary type="text">掌握了会话状态基本知识之后，让我们通过分析会话状态管理的技术细节，增强我们的技能。会话状态处理是一个可以用以下三个步骤概括的任务：分配一个会话ID；从一个提供程序那里获取会话数据；把它填充到页面的上下文中。如前所述，会话状态模块控制所有这些任务的执行。这样做时，它利用两个额外组件：会话ID生成器和会话状态提供程序。在ASP.NET 2.0中，这两个组件都可以用定制组件代替，后文将对此进行介绍。现在...</summary><published>2008-01-21T07:56:00Z</published><updated>2008-01-21T07:56:00Z</updated><author><name>小罗</name><uri>http://www.cnblogs.com/154691780/</uri></author><link rel="alternate" href="http://www.cnblogs.com/154691780/archive/2008/01/21/1047397.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/154691780/archive/2008/01/21/1047397.html"/></entry><entry><id>http://www.cnblogs.com/154691780/archive/2008/01/19/1045567.html</id><title type="text">小技巧：ASP.NET中编程杀死进程</title><summary type="text">技巧 os javascript html asp.net  　　通过ASP.NET可以对一些无用的进程进行远程杀死，下面的代码先列出正在活动的所有进程，然后进行杀死。需要注意的是：这个文件要放在具有Administrator访问权限的虚拟目录下。 　　 　　以下是C#代码： 　　＜%@ Page Language="c#" %＞ 　　＜HTML＞  　　＜HEAD＞ 　　＜% @ Import ...</summary><published>2008-01-19T08:44:00Z</published><updated>2008-01-19T08:44:00Z</updated><author><name>小罗</name><uri>http://www.cnblogs.com/154691780/</uri></author><link rel="alternate" href="http://www.cnblogs.com/154691780/archive/2008/01/19/1045567.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/154691780/archive/2008/01/19/1045567.html"/></entry><entry><id>http://www.cnblogs.com/154691780/archive/2008/01/19/1045516.html</id><title type="text">ASP.NET—From验证：全部代码及讲解</title><summary type="text">关于Forms验证的文章网上千百篇，但我花了1天半的时间学会了&amp;#8220;一点点&amp;#8221;， 现在把代码分享出来，希望对像我一样的初学者所有帮助，也希望高手给指点一下：  --------------------------------------------------------------------------------  Step 1：新建数据库(库：MyForms ；表：use...</summary><published>2008-01-19T08:03:00Z</published><updated>2008-01-19T08:03:00Z</updated><author><name>小罗</name><uri>http://www.cnblogs.com/154691780/</uri></author><link rel="alternate" href="http://www.cnblogs.com/154691780/archive/2008/01/19/1045516.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/154691780/archive/2008/01/19/1045516.html"/></entry><entry><id>http://www.cnblogs.com/154691780/archive/2008/01/19/1045511.html</id><title type="text">ASP.NET如何存取 SQLServer数据库图片</title><summary type="text">SQL Server提供了一个特别的数据类型:image，它是一个包含binary数据的类型。下边这个例子就向你展示了如何将文本或照片放入到数据库中的办法。在这篇文章中我们要看到如何在SQL Server中存储和读取图片。  　　1、建立一个表:  　　在SQL SERVER中建立这样结构的一个表:　　2、存储图片到SQL SERVER数据库中  　　为了能存储到表中，你首先要上传它们到你的WEB...</summary><published>2008-01-19T08:00:00Z</published><updated>2008-01-19T08:00:00Z</updated><author><name>小罗</name><uri>http://www.cnblogs.com/154691780/</uri></author><link rel="alternate" href="http://www.cnblogs.com/154691780/archive/2008/01/19/1045511.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/154691780/archive/2008/01/19/1045511.html"/></entry></feed>
