<?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>Show-Studio.net &#187; ASP</title>
	<atom:link href="http://show-studio.net/tag/asp/feed/" rel="self" type="application/rss+xml" />
	<link>http://show-studio.net</link>
	<description>since 2004</description>
	<lastBuildDate>Wed, 25 Aug 2010 01:06:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Flash Remoting for ASP</title>
		<link>http://show-studio.net/2005/08/18/flash-remoting-for-asp/</link>
		<comments>http://show-studio.net/2005/08/18/flash-remoting-for-asp/#comments</comments>
		<pubDate>Thu, 18 Aug 2005 14:59:23 +0000</pubDate>
		<dc:creator>Shikar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[remoting]]></category>

		<guid isPermaLink="false">http://show-studio.net/2005/08/18/flash-remoting-for-asp/</guid>
		<description><![CDATA[ASPServices为了可以和AFMPHP一样使用flash自己的Remoting，现正在升级开发中，请大家时时关注。]]></description>
			<content:encoded><![CDATA[<p>ASPServices为了可以和AFMPHP一样使用flash自己的Remoting，现正在升级开发中，请大家时时关注。</p>
]]></content:encoded>
			<wfw:commentRss>http://show-studio.net/2005/08/18/flash-remoting-for-asp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>基于ASPServices的Guestbook</title>
		<link>http://show-studio.net/2005/04/02/%e5%9f%ba%e4%ba%8easpservices%e7%9a%84guestbook/</link>
		<comments>http://show-studio.net/2005/04/02/%e5%9f%ba%e4%ba%8easpservices%e7%9a%84guestbook/#comments</comments>
		<pubDate>Sat, 02 Apr 2005 12:36:31 +0000</pubDate>
		<dc:creator>Shikar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[remoting]]></category>

		<guid isPermaLink="false">http://show-studio.net/?p=263</guid>
		<description><![CDATA[一个基于ASPServices技术的Guestbook，以这个留言本做一个示例，演示一下ASPServices的一些功能，ASPServices的主要功能是FLASH和数据库的互动。 [Guestbook] 也可以下载下来看ASPServices]]></description>
			<content:encoded><![CDATA[<p>一个基于ASPServices技术的Guestbook，以这个留言本做一个示例，演示一下ASPServices的一些功能，ASPServices的主要功能是FLASH和数据库的互动。</p>
<p><img src="http://show-studio.net/wp-content/uploads/2009/09/20050402125506.gif" alt="20050402125506" title="20050402125506" width="200" height="229" class="alignnone size-full wp-image-264" /></p>
<p><a href="http://note.show-studio.net">[Guestbook]</a></p>
<p>也可以下载下来看<a href='http://show-studio.net/wp-content/uploads/2009/09/ASPServices.rar'>ASPServices</a></p>
]]></content:encoded>
			<wfw:commentRss>http://show-studio.net/2005/04/02/%e5%9f%ba%e4%ba%8easpservices%e7%9a%84guestbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASPServices &#8211; Flash Remoting for ASP</title>
		<link>http://show-studio.net/2005/03/13/aspservices-flash-remoting-for-asp/</link>
		<comments>http://show-studio.net/2005/03/13/aspservices-flash-remoting-for-asp/#comments</comments>
		<pubDate>Sun, 13 Mar 2005 12:13:05 +0000</pubDate>
		<dc:creator>Shikar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[remoting]]></category>

		<guid isPermaLink="false">http://show-studio.net/?p=238</guid>
		<description><![CDATA[ASPServices是我自己开发的一个Flash和ASP互动的一个程序，因为是第一个版本所以可以功能不是很完善。不过可以做过FLASH和数据库的互动。 程序有两个部分一个FLASH的MXP包，一个是function.asp(ASP服务器的文件) ASPServices配置： 首先要在FLASH上装中ASPServices双击ASPServices.mxp。 然后将function.asp放在你的虚拟主机中。 接下来就是应用了： 下在是FLASH里的代码 if (install != true) { asp = new ASPServices(); asp.setDebug(true); asp.setDefaultGatewayUrl("http://localhost/asp/dataxml");//在这里写上你的dataxml.asp地址不给后面的.asp install = true; } obj = new Object(); obj.database = "select * from news"; asp.setService("getOne"); asp.setService("getAll",obj); function getAll_result(result) { grid1.dataProvider = result; } function getOne_result(result) { trace(result); } 在dataxml.asp中的代码如下 注意的是先要载入数据连接CONN &#60;%@ LANGUAGE = VBScript.Encode %&#62; &#60;!--#include file="conn.asp"--&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>ASPServices是我自己开发的一个Flash和ASP互动的一个程序，因为是第一个版本所以可以功能不是很完善。不过可以做过FLASH和数据库的互动。<br />
程序有两个部分一个FLASH的MXP包，一个是function.asp(ASP服务器的文件)</p>
<p>ASPServices配置：<br />
首先要在FLASH上装中ASPServices双击ASPServices.mxp。<br />
然后将function.asp放在你的虚拟主机中。<br />
接下来就是应用了：<br />
下在是FLASH里的代码<br />
<code>if (install != true) {<br />
asp = new ASPServices();<br />
asp.setDebug(true);<br />
asp.setDefaultGatewayUrl("<span style="color: #ff0000;">http://localhost/asp/dataxml</span>");//在这里写上你的dataxml.asp地址不给后面的.asp<br />
install = true;<br />
}<br />
obj = new Object();<br />
obj.database = "select * from news";<br />
asp.setService("getOne");<br />
asp.setService("getAll",obj);<br />
function getAll_result(result) {<br />
grid1.dataProvider = result;<br />
}<br />
function getOne_result(result) {<br />
trace(result);<br />
}</code></p>
<p>在dataxml.asp中的代码如下<br />
注意的是先要载入数据连接CONN<br />
<code><span style="color: #ff0000;">&lt;%@ LANGUAGE = VBScript.Encode %&gt;<br />
&lt;!--#include file="conn.asp"--&gt;<br />
&lt;!--#include   file="function.asp"--&gt;</span><br />
&lt;%<br />
function getAll()<br />
sqlString = getVar("database")<br />
set rs= conn.Execute(sqlString)<br />
result(rs)<br />
rs.close<br />
end function</code></p>
<p><code> </code></p>
<p><code>function getOne()<br />
dd="rs"<br />
result(dd)<br />
end function<br />
conn.close<br />
%&gt;</code></p>
<p>好了程序可以用了，你试试，这个是一个简单的教程。<br />
下载包中有代码<br />
<a href="http://show-studio.net/wp-content/uploads/2009/09/ASPServices.rar">ASPServices</a></p>
]]></content:encoded>
			<wfw:commentRss>http://show-studio.net/2005/03/13/aspservices-flash-remoting-for-asp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP内部是Unicode的</title>
		<link>http://show-studio.net/2004/12/28/asp%e5%86%85%e9%83%a8%e6%98%afunicode%e7%9a%84/</link>
		<comments>http://show-studio.net/2004/12/28/asp%e5%86%85%e9%83%a8%e6%98%afunicode%e7%9a%84/#comments</comments>
		<pubDate>Tue, 28 Dec 2004 08:35:45 +0000</pubDate>
		<dc:creator>Shikar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ASP]]></category>

		<guid isPermaLink="false">http://show-studio.net/?p=42</guid>
		<description><![CDATA[ASP内部是Unicode的，所有文本都是Unicode存储的。需要时转换到指定字符集。 &#60;%@ codepage=936%&#62;简体中文 &#60;%@ codepage=950%&#62;繁体中文 &#60;%@ codepage=65001%&#62;UTF-8]]></description>
			<content:encoded><![CDATA[<p>ASP内部是Unicode的，所有文本都是Unicode存储的。需要时转换到指定字符集。</p>
<p><code>&lt;%@ codepage=936%&gt;简体中文<br />
&lt;%@ codepage=950%&gt;繁体中文<br />
&lt;%@ codepage=65001%&gt;UTF-8</code></p>
]]></content:encoded>
			<wfw:commentRss>http://show-studio.net/2004/12/28/asp%e5%86%85%e9%83%a8%e6%98%afunicode%e7%9a%84/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

