<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[ahn32288的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/ahn32288</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; ahn32288]]></copyright><item><title><![CDATA[ASP.NET整理：Cookie,Application,Session,页面生命周期]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136494</link><guid>https://blog.csdn.net/ahn32288/article/details/101136494</guid><author>ahn32288</author><pubDate>Fri, 24 Apr 2015 14:25:00 +0800</pubDate><description><![CDATA[一．设置Cookie的2种方式
1.Repsonse.Cookie[“名”]=值;
2.HttpCookiehcCookie=newHttpCookie(“名”,值);
hcCookie.Expires=Date.Now.AddDays(1);这里可以增加月
Response.Cookies.Add(hcCookie);
从Cookie中取值：...]]></description><category></category></item><item><title><![CDATA[安装 SQL SERVER 2008 必须使用 "角色管理工具" 错误 的 解决方案 (转)]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136493</link><guid>https://blog.csdn.net/ahn32288/article/details/101136493</guid><author>ahn32288</author><pubDate>Wed, 18 Jun 2014 17:30:00 +0800</pubDate><description><![CDATA[刚在服务器（Win2008）上安装SqlServer2008的时候出现了这么一个报错——必须使用“角色管理工具”安装或配置Microsoft .NET Framework 3.5 SP1。一开始以为是没装3.5，后来看了一下服务器上已经装了VS2010了，于是排除这个可能性。Google了一下，于是找到问题的解决方法。（尼玛，最近老是要去服务器上安装和部署各种东西然后就遇到各种问题\("...]]></description><category></category></item><item><title><![CDATA[经典算法和OJ网站（开发者必备-转）]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136477</link><guid>https://blog.csdn.net/ahn32288/article/details/101136477</guid><author>ahn32288</author><pubDate>Tue, 08 Apr 2014 11:01:00 +0800</pubDate><description><![CDATA[一.Online Judge简介：
Online Judge系统（简称OJ）是一个在线的判题系统。用户可以在线提交程序多种程序（如C、C++、Pascal）源代码，系统对源代码进行编译和执行，并通过预先设计的测试数据来检验程序源代码的正确性。

一个用户提交的程序在Online Judge系统下执行时将受到比较严格的限制，包括运行时间限制，内存使用限制和安全限制等。用户程序执行...]]></description><category></category></item><item><title><![CDATA[新概念英语第三册课后题答案]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136492</link><guid>https://blog.csdn.net/ahn32288/article/details/101136492</guid><author>ahn32288</author><pubDate>Sat, 26 May 2012 22:38:00 +0800</pubDate><description><![CDATA[Lesson 1 1d 2a 3c 4c 5d 6b 7d 8d 9c 10b 11b 12a

Lesson 2 1d 2b 3c 4b 5d 6b 7c 8a 9b 10a 11a 12c

Lesson 3 1d 2d 3a 4d 5b 6c 7b 8b 9a 10d 11b 12b

Lesson 4 1a 2c 3d 4b 5d 6c 7b 8...]]></description><category></category></item><item><title><![CDATA[设置服务器定时重启]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136490</link><guid>https://blog.csdn.net/ahn32288/article/details/101136490</guid><author>ahn32288</author><pubDate>Mon, 22 Aug 2011 23:04:00 +0800</pubDate><description><![CDATA[可用计划任务调用shutdown.exe -r来实现,方法如下: 在开始--控制面板---计划任务,点添加计划任务 在浏览程序中选中程序c:\windows\system32\shutdown.exe,然后选频率, 添加完成后,点这个任务的属性,然后在运行中输入 C:\WINDOWS\system32\shutdown.exe -r 确定后就会生效.

shutdown程序参数：...]]></description><category></category></item><item><title><![CDATA[http status code]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136474</link><guid>https://blog.csdn.net/ahn32288/article/details/101136474</guid><author>ahn32288</author><pubDate>Thu, 04 Aug 2011 16:06:00 +0800</pubDate><description><![CDATA[　　100 - 表示已收到请求的一部分，正在继续发送余下部分。　　101 - 切换协议。　　200 - 确定。客户端请求已成功。　　2XX - 成功　服务器成功地接受了客户端请求。 (只要是2XX的状态，都表示成功)　　200 - 确定。客户端请求已成功。　　201 - 已创建。　　202 - 已接受。　　203 - 非权威性信息。　　204 - 无内容。　　205 - 重置内容。　　2...]]></description><category></category></item><item><title><![CDATA[数据库中索引的优缺点（转）]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136488</link><guid>https://blog.csdn.net/ahn32288/article/details/101136488</guid><author>ahn32288</author><pubDate>Tue, 21 Jun 2011 22:44:00 +0800</pubDate><description><![CDATA[一、索引的概念
　　　　索引就是加快检索表中数据的方法。数据库的索引类似于书籍的索引。在书籍中，索引允许用户不必翻阅完整个书就能迅速地找到所需要的信息。在数据库中，索引也允许数据库程序迅速地找到表中的数据，而不必扫描整个数据库。
二、索引的特点
1.索引可以加快数据库的检索速度
2.索引降低了数据库插入、修改、删除等维护任务的速度
3.索引创建在表上，不能创建在视图上
4...]]></description><category></category></item><item><title><![CDATA[几类常用Case工具介绍（有点老，但还是具有参考性，对应找较新版本就是了）...]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136472</link><guid>https://blog.csdn.net/ahn32288/article/details/101136472</guid><author>ahn32288</author><pubDate>Sun, 22 May 2011 22:01:00 +0800</pubDate><description><![CDATA[软件开发CASE工具简介
(一)图稿绘制：
1，visio:这是目前国内用得最多的case工具。它提供了日常使用中的绝大多数框图的绘画功能（包括信息领域的各种原理图，设计图)，同时提供了部分信息领域的实物图。visio的精华在于其使用方便，安装后的visio2000既可以单独运行，也可以在word中作为对象插入，与word集成良好，其图生成后在没有安装visio的word仍然能够查看...]]></description><category></category></item><item><title><![CDATA[PowerDesigner建模工具简介(转)]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136470</link><guid>https://blog.csdn.net/ahn32288/article/details/101136470</guid><author>ahn32288</author><pubDate>Sun, 22 May 2011 21:58:00 +0800</pubDate><description><![CDATA[PowerDesigner建模工具简介

PowerDesigner建模工具简介
　　PowerDesigner是Sybase公司的CASE工具集，使用它可以方便地对管理信息系统进行分析设计，它几乎包括了数据库模型设计的全过程。

　　利用PowerDesigner可以制作数据流程图、概念数据模型、物理数据模型，可以生成多种客户端开发工具的应用程序，还可为数据仓库制作结构模型，...]]></description><category></category></item><item><title><![CDATA[如何查看一个网页打开速度]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136485</link><guid>https://blog.csdn.net/ahn32288/article/details/101136485</guid><author>ahn32288</author><pubDate>Thu, 06 Jan 2011 23:55:00 +0800</pubDate><description><![CDATA[我们经常主观感觉一个网页打开速度快或者慢，实际上可以通过浏览器提供工具进行测试，查看到准确的载入时间。
一、Chrome谷歌浏览器
用Chrome浏览器自带工具（chromium插件），很方便地就能测速。
在Chrome打开网页后，在页面内点右键，选inspect element，下栏菜单中选resources，enable resources tracking，接着页面会重新载入...]]></description><category></category></item><item><title><![CDATA[reset sql server express sa password]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136483</link><guid>https://blog.csdn.net/ahn32288/article/details/101136483</guid><author>ahn32288</author><pubDate>Mon, 16 Aug 2010 15:45:00 +0800</pubDate><description><![CDATA[sql server 2005 express edition does not supplied enterprise manager , and in some case you have to use sa a to connect to sql server express. and here is the solution.in default install...]]></description><category></category></item><item><title><![CDATA[服务器维护tips]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136469</link><guid>https://blog.csdn.net/ahn32288/article/details/101136469</guid><author>ahn32288</author><pubDate>Sun, 18 Oct 2009 13:10:00 +0800</pubDate><description><![CDATA[端口扫描工具nmap使用介绍

2008端口帐户服务设置注意事项


转载于:https://www.cnblogs.com/guojin705/archive/2009/10/18/1585434.html]]></description><category></category></item><item><title><![CDATA[（转）11款网站服务器监测通知工具]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136481</link><guid>https://blog.csdn.net/ahn32288/article/details/101136481</guid><author>ahn32288</author><pubDate>Wed, 12 Aug 2009 20:34:00 +0800</pubDate><description><![CDATA[没有哪个站长愿意自己的网站宕机，但Google服务器都会出问题，何况是我等小网站、破服务器。
对待Down机的最好解决办法只有一个了： 及时解决。要及时解决就得及时知道网站服务器什么时候Down了。你不可能24小时刷新着自己的网页去查看网页是否正常，更不要奢望你的用户会在第一时间 通知你网站Down了，除非你是Google。
所以，做为一个站长，网站监测通知工具几乎是必备的工具。本文...]]></description><category></category></item><item><title><![CDATA[sql server 2000 数据同步（2）]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136467</link><guid>https://blog.csdn.net/ahn32288/article/details/101136467</guid><author>ahn32288</author><pubDate>Tue, 26 May 2009 00:17:00 +0800</pubDate><description><![CDATA[复制的概念　　　　复制是将一组数据从一个数据源拷贝到多个数据源的技术，是将一份数据发布到多个存储站点上的有效方式。使用复制技术，用户可以将一份数据发布到多台服务器上，从而使不同的服务器用户都可以在权限的许可的范围内共享这份数据。复制技术可以确保分布在不同地点的数据自动同步更新，从而保证数据的一致性。　　　SQL复制的基本元素包括　　　　出版服务器、订阅服务器、分发服务器、出版物、文章　...]]></description><category></category></item><item><title><![CDATA[sql server2000 数据同步]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136479</link><guid>https://blog.csdn.net/ahn32288/article/details/101136479</guid><author>ahn32288</author><pubDate>Tue, 26 May 2009 00:07:00 +0800</pubDate><description><![CDATA[在SQL Server 里设置和使用数据库复制之前，应先检查相关的几台SQL Server服务器下面几点是否满足： 1、MSSQLserver和Sqlserveragent服务是否是以域用户身份启动并运行的（.\administrator用户也是可以的） 如果登录用的是本地系统帐户local，将不具备网络功能，会产生以下错误: 进程未能连接到Distributor '@Server na...]]></description><category></category></item><item><title><![CDATA[asp.net页面中 回车触发提交事件（转）]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136478</link><guid>https://blog.csdn.net/ahn32288/article/details/101136478</guid><author>ahn32288</author><pubDate>Sun, 03 May 2009 17:51:00 +0800</pubDate><description><![CDATA[1. 深层次来说这不是 ASP.NET 的问题， 而是 html form 的 submit 按钮就是如何设计的。 当你的光标焦点进入某个表单元素的时候，会激活该表单中第一个（流布局顺从左到右，从上至下） type=submit 的按钮（假如有），等待响应回车事件，并提交该form 你可以测试一下代码： &lt;form action=""&gt; &lt;input type="tex...]]></description><category></category></item><item><title><![CDATA[登陆界面设计得不错]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136475</link><guid>https://blog.csdn.net/ahn32288/article/details/101136475</guid><author>ahn32288</author><pubDate>Sun, 03 May 2009 01:26:00 +0800</pubDate><description><![CDATA[https://www.acrobat.com/#/connectnow/ConnectNowBegin https://secure.tickspot.com/login https://ac.mediatemple.net/login.mt?redirect=home%2Emt http://goplan.org/account/signup

转载于:https://www.cnb...]]></description><category></category></item><item><title><![CDATA[Fetion分析之二：服务器地址从何而来——变态的配置文件（转）]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136465</link><guid>https://blog.csdn.net/ahn32288/article/details/101136465</guid><author>ahn32288</author><pubDate>Mon, 20 Apr 2009 21:21:00 +0800</pubDate><description><![CDATA[Fetion分析之二：服务器地址从何而来——变态的配置文件2007年03月08日 22:30作者：nathan注册飞信帐号 http://www.fetion.com.cn/register.php到移动公司下载飞信客户端 http://www.fetion.com.cn/下载linux版本飞信客户端 http://www.libfetion.cn/demoapp_download...]]></description><category></category></item><item><title><![CDATA[飞信Fetion历史数据库研究(History.dat)——嵌入式数据库SQLite介绍（转）]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136473</link><guid>https://blog.csdn.net/ahn32288/article/details/101136473</guid><author>ahn32288</author><pubDate>Mon, 20 Apr 2009 21:12:00 +0800</pubDate><description><![CDATA[最近使用飞信,但发现不能将历史消息像QQ消息那样导出，感觉很不爽。当在飞信中设置（操作–选项–个人设置–消息历史）了保存历史消息之后，飞信的历史消息数据保存的路径如下：2008的消息存储路径：vista下：C:\Users\用户名\AppData\Roaming\Fetion\飞信号\history.datXp 下 ：c:\documents and setttings\用户名\appl...]]></description><category></category></item><item><title><![CDATA[Google黑板报上连载的长文]]></title><link>https://blog.csdn.net/ahn32288/article/details/101136471</link><guid>https://blog.csdn.net/ahn32288/article/details/101136471</guid><author>ahn32288</author><pubDate>Fri, 06 Feb 2009 15:10:00 +0800</pubDate><description><![CDATA[Google黑板报上连载的长文
第一章 帝国的余辉（AT&amp;T） 1 百年帝国 2 几度繁荣 3 利令智昏 4 外来冲击
第二章 蓝色巨人（IBM） 1 赶上机械革命的最后一次浪潮 2 领导电子技术革命的浪潮 3 错过全球信息化的大潮 4 他也是做（芯）片的 5 保守的创新者 6 内部的优胜劣汰
第三章 “水果”公司的复兴（乔布斯和...]]></description><category></category></item></channel></rss>