<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>活着 &#187; asp</title>
	<atom:link href="http://www.yetlive.com/tags/asp/feed" rel="self" type="application/rss+xml" />
	<link>http://www.yetlive.com</link>
	<description>活着就好，认真生活每一天</description>
	<lastBuildDate>Fri, 30 Dec 2011 13:17:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>PHP、ASP与JSP的比较</title>
		<link>http://www.yetlive.com/post/166.html</link>
		<comments>http://www.yetlive.com/post/166.html#comments</comments>
		<pubDate>Sat, 07 Mar 2009 05:19:41 +0000</pubDate>
		<dc:creator>认真生活</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[jsp]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.d.zhangpeng.info/?p=166</guid>
		<description><![CDATA[<p>目前常用的动态网页语言有PHP（Hypertext Preprocessor)、ASP(Active Server Pages)和JSP(Java Server Pages)。下面建简单比较一下三种语言。</p><p>衡量内容&#160;&#160;&#160;PHP&#160;&#160;&#160;ASP&#160;&#160;&#160;JSP</p><p>运行速度&#160;&#160;&#160;较快&#160;&#160;&#160;较快&#160;&#160;&#160;快</p>]]></description>
			<content:encoded><![CDATA[<p>目前常用的动态网页语言有PHP（Hypertext Preprocessor)、<a href="http://www.yetlive.com/tags/asp" class="st_tag internal_tag" rel="tag" title="标签 asp 下的日志">ASP</a>(Active Server Pages)和JSP(Java Server Pages)。下面建简单比较一下三种语言。</p>
<p><span id="more-166"></span></p>
<p>衡量内容   <a href="http://www.yetlive.com/tags/php" class="st_tag internal_tag" rel="tag" title="标签 php 下的日志">PHP</a>   ASP   <a href="http://www.yetlive.com/tags/jsp" class="st_tag internal_tag" rel="tag" title="标签 jsp 下的日志">JSP</a></p>
<p>运行速度   较快   较快   快</p>
<p>运行损耗   较大   较大   较小</p>
<p>难易程度   简单   简单   易掌握</p>
<p>扩展性   较差   较好   好</p>
<p>安全性   好    较差   好</p>
<p>函数支持   多   较少   多</p>
<p>数据库支持   多   多   多</p>
<p>厂商支持   较多   较少   多</p>
<p>对XML支持   支持   不支持   支持</p>
<p>对组件支持   不支持   支持   支持</p>
<p>应用程度   较广   较广   较广</p>
<p>运行平台   Windows/UNIX   Windows   绝大部分平台</p>
<p>以上就是对几种目前流行的动态网页制作语言的一个简单比较，具体选择什么语言学习则看自己选择了。应该来说，活着更倾向与推荐学习JSP，只是相对来说难度是比较大一点的。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yetlive.com/post/166.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>asp判断字符串中特定字符代码</title>
		<link>http://www.yetlive.com/post/140.html</link>
		<comments>http://www.yetlive.com/post/140.html#comments</comments>
		<pubDate>Wed, 07 Jan 2009 00:05:51 +0000</pubDate>
		<dc:creator>认真生活</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[asp]]></category>

		<guid isPermaLink="false">http://www.d.zhangpeng.info/?p=140</guid>
		<description><![CDATA[以前活着在制作asp页面时候碰到的问题,当时查阅大量的网站,走了很多的弯路终于找到这个判断字符串中是否含有某特定字符的方法.鉴于网上搜索到的结果描述不详细的问题,活着今日愿意详细的描述一下活着所收集到的方法. asp判断字符串中是否含有某个特定的字符的方法很多,Javascript应该也可以实现,不过活着要介绍的是用Vbscript判断特定字符的一个方法. 在vbscript中,比如有这样一个字符串a=”www.yetlive.com”，现在我要判断a字符串中是否有“yetlive”这一特定的短语，我们能够轻易判断，然而机器如何利用程序代码判断呢？ 使用到的关键函数是instr，该函数判断字符串中特定字符后返回的结果是0或1，当存在所需判断的字符时，返回值是1，没有则返回0。instr函数的参数为instr(a,b),其中b是目标字符，而a是需要判断是否含有改特定字符的一个字符串。 具体的asp例程代码如下： &#60;% dim a=”www.yetlive.com” dim b=”yetlive” if instr(a,b)&#62;0 then msgbox”a字符串中含有b字符” else msgbox”a字符串中不含有b字符” end if %&#62; 该代码就是判断a字符串中是否含有b所代表的字符的方法了，msgbox是弹出提示框。 以上就是活着了解的asp中利用vbscript判断字符串中特定字符的一个方法。]]></description>
			<content:encoded><![CDATA[<p>以前<a href="http://www.yetlive.com">活着</a>在制作asp页面时候碰到的问题,当时查阅大量的网站,走了很多的弯路终于找到这个判断字符串中是否含有某特定字符的方法.鉴于网上搜索到的结果描述不详细的问题,活着今日愿意详细的描述一下活着所收集到的方法.</p>
<p><span id="more-140"></span></p>
<p>asp判断字符串中是否含有某个特定的字符的方法很多,<a href="http://www.yetlive.com/post/Javascript-auto-fill-textbox.html" target="_blank">Javascript</a>应该也可以实现,不过活着要介绍的是用Vbscript判断特定字符的一个方法.</p>
<p>在<span style="color: #0000ff;"><strong>vbscript</strong></span>中,比如有这样一个字符串<span style="color: #ff0000;">a=”www.yetlive.com”</span>，现在我要<span style="color: #ff0000;">判断a字符串中是否有“yetlive”这一特定的短语</span>，我们能够轻易判断，然而机器如何利用程序代码判断呢？</p>
<p>使用到的<span style="color: #ff0000;">关键函数是instr</span>，该函数判断字符串中特定字符后<span style="color: #ff0000;">返回的结果是0或1</span>，当存在所需判断的字符时，返回值是1，没有则返回0。<span style="color: #ff0000;">instr函数的参数为instr(a,b)</span>,其中b是目标字符，而a是需要判断是否含有改特定字符的一个字符串。</p>
<p><strong>具体的asp例程代码如下：</strong></p>
<p><span style="color: #ff0000;">&lt;% </span></p>
<p><span style="color: #ff0000;">dim a=”www.yetlive.com”</span></p>
<p><span style="color: #ff0000;">dim b=”yetlive”</span></p>
<p><span style="color: #ff0000;">if instr(a,b)&gt;0 then</span></p>
<p><span style="color: #ff0000;">msgbox”a字符串中含有b字符”</span></p>
<p><span style="color: #ff0000;">else</span></p>
<p><span style="color: #ff0000;">msgbox”a字符串中不含有b字符”</span></p>
<p><span style="color: #ff0000;">end if</span></p>
<p><span style="color: #ff0000;">%&gt;</span></p>
<p>该代码就是判断a字符串中是否含有b所代表的字符的方法了，msgbox是弹出提示框。</p>
<p>以上就是活着了解的asp中利用vbscript判断字符串中特定字符的一个方法。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yetlive.com/post/140.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

