<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[余姚电子商务网]]></title>
<link>http://www.yuyaopages.com/blog/</link>
<description><![CDATA[余姚网站建设、余姚网页设计、余姚网络公司、余姚网站推广]]></description>
<language>zh-cn</language>
<copyright><![CDATA[Copyright 2005 PBlog3 v2.8]]></copyright>
<webMaster><![CDATA[best@yuyaopages.com(中亚网络)]]></webMaster>
<generator>PBlog2 v2.4</generator> 
<image>
	<title>余姚电子商务网</title>
	<url>http://www.yuyaopages.com/blog/images/logos.gif</url>
	<link>http://www.yuyaopages.com/blog/</link>
	<description>余姚电子商务网</description>
</image>

			<item>
			<link>http://www.yuyaopages.com/blog/article.asp?id=69</link>
			<title><![CDATA[余姚塑料模具网]]></title>
			<author>best@yuyaopages.com(admin)</author>
			<category><![CDATA[最新动态]]></category>
			<pubDate>Sun,27 Sep 2009 09:01:00 +0800</pubDate>
			<guid>http://www.yuyaopages.com/blog/default.asp?id=69</guid>
		<description><![CDATA[<p>余姚塑料模具网，网址：<a href="http://www.yuyaomould.com">http://www.yuyaomould.com</a> 成立在塑料王国，模具之乡的余姚，余姚塑料模具网将以整合本地上下游资源的优势，服务余姚模具行业为己任，准确把握电子商务的发展趋势，全力打造出一个在产品内容、服务机制等方面都走在行业前端的全国性、专业化网上商贸平台。</p>]]></description>
		</item>
		
			<item>
			<link>http://www.yuyaopages.com/blog/article.asp?id=67</link>
			<title><![CDATA[国外空间中文显示乱码问题]]></title>
			<author>best@yuyaopages.com(admin)</author>
			<category><![CDATA[常见问题]]></category>
			<pubDate>Sun,31 May 2009 14:44:21 +0800</pubDate>
			<guid>http://www.yuyaopages.com/blog/default.asp?id=67</guid>
		<description><![CDATA[在数据提取页面的第一行代码换成如下代码即可： <br/>＜% @language=vbscript codepage=936%＞ <br/><br/><br/>一.若是html文件(.htm .html)： <br/>在＜head＞＜/head＞中加上＜meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=gb2312&#34;＞ <br/><br/><br/>二.若是PHP/cgi文件(.php .php3 .php4)： <br/>在每个PHP文件第一行加上＜?header(&#34;content-Type: text/html; charset=gb2312&#34;; ?＞ <br/><br/><br/>三.若是asp文件(.asp .jsp)： <br/><br/>　　下面言归正传，说说asp源文件在国外服务器上中文问题的解决办法: <br/><br/>1.首先，把您的asp源文件放在 IIS 里进行全面测试，调用每一项功能，确认它完全能够使用，并正确显示中文，并打开 *.mdb 数据库文件查看中文显示是否正常。全部通过后，做好备份文件，即可执行第二步。 <br/><br/>2.如果，您根本不懂 asp 的话，最简单的方法是： <br/>打开 所有 *.asp 文件，并在第一行插入 ＜%@ codepage=&#34;936&#34; %＞， <br/><br/>例外情况： <br/>①，如果第一行是以 ＜%@ LANGUAGE=&#34;VBs cript&#34; %＞ 开头， <br/>则把第一行改为：＜%@ codepage=&#34;936&#34; LANGUAGE=&#34;VBs cript&#34; %＞ <br/><br/>②，如果第一行是以 ＜html＞ 或 ＜s cript LANGUAGE=&#34;javas cript&#34;＞开头，则不加入。 <br/><br/>3.第二步完成后，再用 IIS 对每一项功能进行测试，如显示 \0\conn.asp line 1, 即为错误信息，意思是： conn.asp 源文件第一行有错，那就把 ＜%@ codepage=&#34;936&#34; %＞ 删除即可，全部功能测试可行后，即可上传至国外服务器上，进行测试。 <br/><br/>4.方法还是：调用每一项功能，全部能正确使用并能显示中文后，再“下传”*.mdb 文件（非常重要），打开，确认能正确显示中文，大功告成。 <br/><br/>另外在外国服务器上用ACESS2000的中文显示方法不用转化数据库ACESS2000,只需在ASP第一行加入＜%@ codepage=1256 %＞ <br/><br/>怎么解决外国空间中文显示出问题的问题 <br/>非程序生成的文字可以显示。但程序生成的文字就只有E文可以显示了。中文全是？号,这是数据库乱码引起的。 <br/><br/>方法一： <br/>使用 Microsoft Access 2000 打开数据库，选择工具菜单＞数据库实用工具＞转换数据库＞到早期 Access 数据库版本。OK！ <br/><br/>方法二： <br/><br/>后来订阅了微软的新闻组，在微软的新闻组dotnet.framework.aspplus.general中发现有讨论这 <br/>个问题的文章，方法为添加＜%@ CODEPAGE = &#34;936&#34; %＞到每一页的开头，有点类似于jsp中的 <br/>＜%@ page contentType=&#34;text/html;charset=gb2312&#34;%＞ <br/>赶紧测试了一下，果然OK!!! <br/><br/>例子如下面所示： <br/>＜%@ CODEPAGE = &#34;936&#34; %＞ <br/>＜%@ Import Namespace=&#34;System.Data&#34; %＞ <br/>＜%@ Import Namespace=&#34;System.Data.ADO&#34; %＞ <br/>＜%@ Import Namespace=&#34;System.Globalization&#34; %＞ <br/>＜html＞ <br/>＜head＞ <br/>＜meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=gb2312&#34;＞ <br/>＜/head＞ <br/><br/>方法三： <br/><br/><br/>添加一个config.web文件到 <br/>web目录下， <br/>建立一个文件config.web，内容如下，放在WEB目录下 <br/>＜configuration＞ <br/>＜globalization <br/>requestencoding=&#34;utf-8&#34; <br/>responseencoding=&#34;utf-8&#34; <br/>/＞ <br/>＜/configuration＞]]></description>
		</item>
		
			<item>
			<link>http://www.yuyaopages.com/blog/article.asp?id=60</link>
			<title><![CDATA[自己做Skype标签代码 实现更多功能]]></title>
			<author>best@yuyaopages.com(admin)</author>
			<category><![CDATA[常见问题]]></category>
			<pubDate>Wed,18 Mar 2009 14:31:01 +0800</pubDate>
			<guid>http://www.yuyaopages.com/blog/default.asp?id=60</guid>
		<description><![CDATA[<p style="text-indent: 2em">关于Skype标签制作，除了利用Skype提供的网页来生成Skype标签外，你也可以通过如下方法实现Skype标签的高级功能。</p>
<p style="text-indent: 2em">使用Skype链接</p>
<p style="text-indent: 2em">你可以把Skype链接放入到HTML代码中，这样别人在打开页面后就能方便的联系你。缺省情况下为呼叫动作，你也可以设置为其他动作。下面是几个简单的例子。</p>
<p style="text-indent: 2em"><a href="http://www.yuyaopages.com/blog/skype:zynetwork?call"><font color="#f81c92">点击</font></a> (呼叫echo123)</p>
<p style="text-indent: 2em"><a href="http://www.yuyaopages.com/blog/skype:zynetwork"><font color="#f81c92">点击</font></a> (缺省动作 - 呼叫)</p>
<p style="text-indent: 2em"><a href="http://www.yuyaopages.com/blog/skype:zynetwork?add"><font color="#f81c92">点击</font></a>(添加echo123为好友)</p>
<p style="text-indent: 2em">Skype JavaScript检测</p>
<p style="text-indent: 2em">如果点击你的Skype链接或标签的人没有安装Skype，会发生什么?通常情况下，这时会弹出一个浏览器错误，告诉你无法识别&ldquo;skype:&rdquo;链接。但如果你使用我们提供的JavaScript检测功能，则会自动弹出Skype下载提示。要实现这个功能，你只需要按照如下步骤简单操作：</p>
<p style="text-indent: 2em">首先，你需要把下面这段代码放到你的页面中：</p>
<p style="text-indent: 2em">然后你需要添加下面这段代码到你希望放置Skype链接的位置，作为它的超链接。</p>
<p style="text-indent: 2em">能引发的动作</p>
<p style="text-indent: 2em">呼叫</p>
<p style="text-indent: 2em">当有人点击一个呼叫链接时，Skype会向该链接中的Skype用户名/电话号码发起呼叫。</p>
<p style="text-indent: 2em">例子</p>
<p style="text-indent: 2em">skype:user1?call (Skype到Skype的呼叫)</p>
<p style="text-indent: 2em">skype:+861087654321?call (SkypeOut呼叫)</p>
<p style="text-indent: 2em">添加为好友</p>
<p style="text-indent: 2em">该链接会将其中的Skype用户名添加到点击该链接的用户的好友列表中。你也可以用这些链接来添加SkypeOut联系人。</p>
<p style="text-indent: 2em">例子</p>
<p style="text-indent: 2em">skype:user1?add (将user1添加到好友列表中)</p>
<p style="text-indent: 2em">skype:+861087654321?add (将该号码添加为SkypeOut联系人)</p>
<p style="text-indent: 2em">发送即时消息</p>
<p style="text-indent: 2em">你可以使用Skype链接向你的好友发送即时消息&mdash;&mdash;甚至与几个好友一起同时会话！</p>
<p style="text-indent: 2em">例子</p>
<p style="text-indent: 2em">skype:user1?chat (向用户user1发送即时消息)</p>
<p style="text-indent: 2em">skype:user1;user2;user3?chat(与3个用户开始聊天)</p>
<p style="text-indent: 2em">开始会议通话</p>
<p style="text-indent: 2em">就像发起普通的Skype呼叫一样。而且是同时和好几个朋友一起通话。</p>
<p style="text-indent: 2em">例子</p>
<p style="text-indent: 2em">skype:user1;user2?call (与2个Skype好友开始会议通话)</p>
<p style="text-indent: 2em">skype:user1;+861087654321?call (也可以使用SkypeOut号码)</p>
<p style="text-indent: 2em">查看个人资料</p>
<p style="text-indent: 2em">当其他人点击这类链接时，他们可以看到你的Skype个人资料。</p>
<p style="text-indent: 2em">例子</p>
<p style="text-indent: 2em">skype:user1?userinfo (显示用户user1的Skype个人资料)</p>
<p style="text-indent: 2em">发送文件</p>
<p style="text-indent: 2em">该链接允许其他人向你发送文件。请在接收陌生人发来的文件时格外小心，因为你的计算机可能因此感染上病毒！</p>
<p style="text-indent: 2em">例子</p>
<p style="text-indent: 2em">skype:user1?sendfile (向用户user1发送文件)</p>
<p style="text-indent: 2em">skype:user1;user2?sendfile (同时向多个用户发送文件)</p>]]></description>
		</item>
		
			<item>
			<link>http://www.yuyaopages.com/blog/article.asp?id=58</link>
			<title><![CDATA[QQ,MSN,SKype在线代码申请]]></title>
			<author>best@yuyaopages.com(admin)</author>
			<category><![CDATA[常见问题]]></category>
			<pubDate>Wed,18 Mar 2009 14:22:20 +0800</pubDate>
			<guid>http://www.yuyaopages.com/blog/default.asp?id=58</guid>
		<description><![CDATA[<p>1.QQ在线</p>
<p>地址：　<a href="http://is.qq.com/webpresence/code.shtml">http://is.qq.com/webpresence/code.shtml</a></p>
<p>选择界面风格，输入QQ号，填网站名称，copy代码即可。</p>
<p>2.MSN在线</p>
<p>代码如下：</p>
<p>&lt;A HREF=&quot;<a href="http://snind.gotdns.com:8080/message/msn/">http://snind.gotdns.com:8080/message/msn/</a>你的msn用户名&quot;&gt;&lt;IMG SRC=&quot;<a href="http://snind.gotdns.com:8080/msn/">http://snind.gotdns.com:8080/msn/</a>你的msn用户名&quot; align=&quot;absmiddle&quot; border=&quot;0&quot; ALT=&quot;MSN Online Status Indicator&quot; onerror=&quot;this.onerror=null;this.src='http://osi.hshh.org/msnunknown.gif';&quot;&gt;&lt;/a&gt;</p>
<p>红色地方可替换自己喜欢的MSN在线图片<br />
<br />
建立对话：<a href="http://www.yuyaopages.com/blog/msnim:chat?contact=sales@yuyaopages.com">测试对话</a> 代码:&lt;a href=msnim:chat?contact=sales@yuyaopages.com&gt;测试对话&lt;/a&gt;<br />
添加好友：msnim:add?contact=sales@yuyaopages.com<br />
语音聊天：msnim:voice?contact=sales@yuyaopages.com<br />
视频聊天：msnim:video?contact=sales@yuyaopages.com<br />
&nbsp;</p>
<p>3.Skype在线 skype帐号的申请，可以安装skype之后启动软件，按照提示操作即可。</p>
<p>地址：<a href="http://skype.tom.com/products/skypeme.htm">http://skype.tom.com/products/skypeme.htm</a></p>
<p>选择喜欢的式样，copy现成代码即可</p>
<p><br />
呼叫zynetwork：<a href="http://www.yuyaopages.com/blog/skype:xiong_xuefeng?call"><font color="#f81c92">点击呼叫zynetwork</font></a> <br />
向zynetwork发送信息：<a href="http://www.yuyaopages.com/blog/skype:xiong_xuefeng?chat"><font color="#f81c92">向zynetwork发送信息</font></a> <br />
加zynetwork为好友：<a href="http://www.yuyaopages.com/blog/skype:xiong_xuefeng?add"><font color="#f81c92">点击此处添加zynetwork为好友</font></a><br />
&nbsp;</p>]]></description>
		</item>
		
			<item>
			<link>http://www.yuyaopages.com/blog/article.asp?id=57</link>
			<title><![CDATA[Yuyao Yadong Plastic Co., Ltd.]]></title>
			<author>best@yuyaopages.com(admin)</author>
			<category><![CDATA[客户案例 网站]]></category>
			<pubDate>Sat,14 Mar 2009 12:44:22 +0800</pubDate>
			<guid>http://www.yuyaopages.com/blog/default.asp?id=57</guid>
		<description><![CDATA[<p>Yuyao Yadong Plastic Co., Ltd. Specializes in manufacturing various kinds of water purifying equipment: RO system, counter top water purifier, pipe water purifier, filter cartridge and their components. etc.,which is located in a developing coastal city in Yuyao, Ningbo. We have more than 10 years's of experience in the industry and becoming the OEM provider to some world famous brands now. The continuous efforts on research and development and the concentration on our quality control brought our long-term and reliable orders from all over the world including Europe, Southeast Asia, East Asia, Middle East, South America, Oceania. We are thus confident of our ability to satisfy all the customers with our competitive product together with our approvals of CE, NSF, Rohs etc., as well as ISO9002 Quality Assurance System.</p>
<p>Our products have won enormous fame in both the domestic and overseas markets for exclusive service and high-quality products. We may customize our machines according to different international standards. Today we put forward one more step and get a new stage of export quantity and try to make our product and service benefit more and more people all around the world.</p>
<p><a target="_blank" href="http://www.naturewater.cn"><img border="0" alt="" src="http://www.yuyaopages.com/blog/attachments/month_0903/a2009314124329.jpg" /></a></p>]]></description>
		</item>
		
			<item>
			<link>http://www.yuyaopages.com/blog/article.asp?id=54</link>
			<title><![CDATA[Donsen Building Materials Co.,Ltd.]]></title>
			<author>best@yuyaopages.com(admin)</author>
			<category><![CDATA[客户案例 网站]]></category>
			<pubDate>Sat,14 Mar 2009 12:31:16 +0800</pubDate>
			<guid>http://www.yuyaopages.com/blog/default.asp?id=54</guid>
		<description><![CDATA[<p>Gold medal is the registered trade mark of Donsen company. Which specialized in manufacturing and selling pipeline systems, the tiptop pipeline systems of Donsen company.</p>
<p>The orientation of Gold medal: high quality, high grade service.</p>
<p>The expectation of the Gold medal: Through the strive to manufacture high quality pipeline products for customers; achieve the purpose to transport the health drinking water completely and to do the most contribute to the environment protection and saving water resource, Gold medal will be excellent international pipeline brand.</p>
<p>Gold medal are seeking the agency all over the world. warmly welcome your visiting. we shall get ahead and creat nice future together. meanwhite hope Donsen will be your trueheartedness cooperate partner.</p>
<p>Gold medal pipes, the golden sign of the pipeline!</p>
<p><a target="_blank" href="http://www.gold-medal.net.cn"><img border="0" alt="" src="http://www.yuyaopages.com/blog/attachments/month_0903/z2009314123038.jpg" /></a></p>]]></description>
		</item>
		
			<item>
			<link>http://www.yuyaopages.com/blog/article.asp?id=53</link>
			<title><![CDATA[国际域名状态的含义]]></title>
			<author>best@yuyaopages.com(admin)</author>
			<category><![CDATA[常见问题]]></category>
			<pubDate>Fri,13 Mar 2009 16:46:07 +0800</pubDate>
			<guid>http://www.yuyaopages.com/blog/default.asp?id=53</guid>
		<description><![CDATA[Verisign已经改变域名到期删除的相关规则,具体举例如下： <br/>1：比如域名yourname.com到期时间为2003年03月01日； <br/>2：从2003年03月02日开始，域名的ns将会被系统自动删除，域名无法解析，但我公司会继续保留该域名30天，用户可以在这30天的期限内续费； <br/>3：如果在2所述的30天期限内没有续费，即从2003年03月31日开始，域名将变成RedemptionPeriod状态，该状态将会保持30天，在此期间该域名不会掉下来，但是除了restore命令以外的所有命令对此域名无效； <br/>4：域名在RedemptionPeriod状态下可以restore回来，但每restore一次需要支付（折合）人民币1000元（含一年续费）； <br/>5：如果域名在RedemptionPeriod状态下的30天没有restore，从2003.04.29开始域名变成PendingDel&#101;te状态（5天），2003年04月04日该域名将会删除。 <br/><br/>VeriSign于2003年1月在其Registry Whois (.COM和.NET)中加了3个字段：<br/>Status、Creation Date、Expiration Date <br/><br/>其中 Status 目前发现有8种状态，分别是： <br/>1、ACTIVE：活动状态。由Registry设置；该域名可以由Registrar更改；可以续费；至少被指派一个DNS。 <br/>2、REGISTRY-LOCK：注册局锁定。由注册局设置；该域名不可以由注册商更改、删除；必须由注册局解除此状态才可以由注册商更改域名信息；域名可以续费；如果域名被指派至少一个DNS则可以包含在(域名根服务器)的区域中(可以正常使用)。 <br/>3、REGISTRY-HOLD：注册局保留。由注册局设置；该域名不可以由注册商更改、删除；必须由注册局解除此状态才可以由注册商更改域名信息；域名可以续费；该域名不包括在(域名根服务器)的区域中(不能正常使用)。 <br/>4、REGISTRAR-LOCK：注册商锁定。由该域名的原始注册商设置；该域名不可以被更改或删除；必须由注册商解除此状态才可以更改域名信息；该域名可以续费。该域名包含在(域名根服务器)的区域中(可以正常使用)。 <br/>5、REGISTRAR-HOLD：注册商保留。由该域名的原始注册商设置；该域名不可以被更改或删除；必须由注册商解除此状态才可以更改域名信息；该域名可以续费。该域名不包括在(域名根服务器)的区域中(不能正常使用)。 <br/>6、REDEMPTIONPERIOD：宽限期。当注册商向注册局提出删除域名请求后，由注册局将域名设置称此状态，不过，条件是该域名已经注册了5天以上（如果该域名注册时间不足5天，则立即删除）；该域名不包括在(域名根服务器)的区域中(不能正常使用)；该域名不可以被更改或清除，只可以被恢复；任何其他注册商提出对此域名的更改或其他请求都将被拒绝；该状态最多保持30天。 <br/>7、PENDINGRESTORE：恢复未决。当注册商提出将处于REDEMPTIONPERIOD的域名恢复请求后，由注册局设置；该域名包含在(域名根服务器)的区域中(可以正常使用)；注册商提出的更改或任何其他请求都将被拒绝；在7天之内，有注册商向注册局提供必需的恢复文件，如果注册商在7天之内提供了这些文件，该域名将被置为ACTIVE状态，否则，该域名将重新返回到REDEMPTIONPERIOD状态。 <br/>8、PENDINGDel&#101;te：删除未决。如果一个域名在被设置成REDEMPTIONPERIOD状态期间内，注册商没有提出恢复请求，那么，域名将被置于PENDINGDel&#101;te状态，注册商对此域名的任何请求都将被拒绝；5天之后清除。]]></description>
		</item>
		
			<item>
			<link>http://www.yuyaopages.com/blog/article.asp?id=52</link>
			<title><![CDATA[如何在outlook中设置使用邮件系统]]></title>
			<author>best@yuyaopages.com(admin)</author>
			<category><![CDATA[常见问题]]></category>
			<pubDate>Mon,23 Feb 2009 10:17:47 +0800</pubDate>
			<guid>http://www.yuyaopages.com/blog/default.asp?id=52</guid>
		<description><![CDATA[<p>
<table cellspacing="0" cellpadding="0" width="100%" border="0">
    <tbody>
        <tr>
            <td class="l17">
            <p>Outlook Express 5.0,6.0及outlook2000, outlook2003的设置方法基本相同，我们现以中文Outlook Express 5.0为例进行说明：：</p>
            <p>1.启动Outlook Express；</p>
            <p>2.依次单击&quot;工具-&gt;帐号&quot;菜单项，打开&quot;Internet 帐号&quot;窗口；</p>
            <p><img height="271" alt="" width="450" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441901.gif" /></p>
            <p>3.单击&quot;邮件&quot;标签（默认）；</p>
            <p>单击&quot;添加&quot;按钮，从弹出的菜单中选择&quot;邮件&quot;选项将弹出Internet连接向导；</p>
            <p><img height="110" alt="" width="546" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441584.gif" /></p>
            <p>4.首先输入您的&quot;显示姓名&quot;，此姓名将出现在您所发送邮件的&quot;寄件人&quot;一栏；</p>
            <p><img height="251" alt="" width="483" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441127.gif" /><br />
            单击&quot;下一步&quot;按钮；</p>
            <p>6.在弹出的窗口中输入您的邮箱地址.例如yourname@yourdomain.com<br />
            &nbsp;</p>
            <p><img height="234" alt="" width="461" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441401.gif" /><br />
            单击&quot;下一步&quot;按钮；</p>
            <p>7.在弹出的&quot;电子邮件服务器名&quot;窗口中，系统默认&quot;我的接收邮件服务器&quot;为&quot;POP3&quot;，不需要修改；</p>
            <p>在&quot;接收邮件（POP3，IMAP或HTTP）服务器(I)&quot;中填写您接收邮件的服务器地址，例如：mail.yourdomain.com；<br />
            <br />
            在&quot;外发邮件服务器（SMTP）&quot;,中填写您外发邮件服务器的地址，例如：mail.yourdomain.com<br />
            &nbsp;</p>
            <p><img height="257" alt="" width="410" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441710.gif" /><br />
            单击&quot;下一步&quot;按钮；</p>
            <p>8.在弹出的窗口中分别输入您的邮箱的帐号名和密码。<br />
            <br />
            其中帐号名是您的邮箱地址，例如您的邮箱地址是yourname@yourdomain.com，则帐号名是yourname@yourdomain.com；为了确保安全，密码显示为星号。如果您没有输入密码或输入密码有误，系统会在接收邮件时提示您输入密码。</p>
            <p><img height="285" alt="" width="463" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441501.gif" /><br />
            单击&quot;下一步&quot;按钮；</p>
            <p>9.弹出&quot;祝贺您&quot;窗口；</p>
            <p><img height="138" alt="" width="399" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441859.gif" /><br />
            单击&quot;完成&quot;按钮返回上层窗口；</p>
            <p>10.单击&quot;属性&quot;按钮，打开设置窗口，单击&quot;服务器&quot;选项卡，在窗口下方，勾选&quot;我的服务器要求身份验证&quot;，然后单击&quot;确定&quot;返回。</p>
            <p><img height="374" alt="" width="329" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441615.gif" /> 完成以上设置之后，您就可以单击窗口中的&quot;发送接收&quot;工具按钮<img height="41" alt="" width="65" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441742.gif" />进行邮件的收发了。</p>
            <p align="right"><a name="2"></a><a href="http://218.30.103.117/new_gb/help/right_outlook.htm#0"><u><font color="#800080">返回</font></u></a>　</p>
            <p>&nbsp;</p>
            </td>
        </tr>
    </tbody>
</table>
<table cellspacing="0" cellpadding="0" width="560%" border="0">
    <tbody>
        <tr>
            <th class="biaoti"><span class="f24"><font size="5">1.如何在Outlook Express 2002中使用使用本邮件系统</font></span></th>
        </tr>
        <tr>
            <td><font size="5"><hr bgcolor="#d9d9d9" size="1" />
            </font></td>
        </tr>
        <!--
        <tr>
            <td height=20 align=center>http://www.sina.com.cn <font color=#A20010>新浪科技</font></td>
        </tr>
        -->
        <tr>
            <td height="15">&nbsp;</td>
        </tr>
        <tr>
            <td class="l17">
            <p>Outlook Express 2002以及office outlook2002的设置的方法如下：</p>
            <p>1.首先，启动Outlook Express；</p>
            <p>2.从菜单中选择&quot;工具/帐号&quot;菜单项，打开&quot;电子邮件帐号&quot;窗口；</p>
            <p><img height="316" alt="" width="450" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441346.jpg" /></p>
            <p>&nbsp;</p>
            <p>3.选择&ldquo;建新的电子邮件帐户&rdquo;（默认），并单击下一步；</p>
            <p><img height="316" alt="" width="450" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441197.jpg" /></p>
            <p>&nbsp;</p>
            <p>4.选择&ldquo;pop3&rdquo;帐户，并单击下一步；</p>
            <p><img height="316" alt="" width="450" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441265.jpg" /><br />
            &nbsp;</p>
            <p>&nbsp;</p>
            <p>5.弹出的对话筐中填入以下内容：</p>
            <p>在<strong>用户信息</strong>中输入您的姓名，电子邮件地址。<br />
            <br />
            在<strong>服务器信息</strong>中，输入邮箱的POP3和smtp服务器名称:<br />
            <br />
            接收邮件服务器（pop3):mail.yourdomain.com</p>
            <p>发送邮件服务器（smtp):mail.yourdomain.com</p>
            <p>然后在<strong>登陆信息</strong>里面输入您要邮箱用户名（即邮箱地址）和密码，然后点击&ldquo;其他设置&rdquo;，如图中所示。</p>
            <p>6.点击&ldquo;其他设置&rdquo;后的画面如下，点击&ldquo;发送服务器&rdquo;，并在&ldquo;我的发送服务器要求验证&rdquo;该项上打勾。<br />
            <br />
            &nbsp;</p>
            <p><img height="316" alt="" width="450" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441215.jpg" /><br />
            &nbsp;</p>
            <p><br />
            单击&quot;确定&quot;按钮；</p>
            <p>并单击&ldquo;下一步&rdquo;按钮。</p>
            <p>&nbsp;</p>
            <p>7.点击&ldquo;完成&rdquo;后，整个设置过程就结束了，完成以上设置之后，您就可以单击窗口中的&quot;发送接收&quot;工具按钮<img height="41" alt="" width="65" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441588.gif" /><br />
            进行邮件的收发了。</p>
            <p><img height="316" alt="" width="450" border="1" src="http://www.net.cn/service/faq/UploadFiles_3551/200607/20060720134441593.jpg" /></p>
            </td>
        </tr>
    </tbody>
</table>
</p>]]></description>
		</item>
		
			<item>
			<link>http://www.yuyaopages.com/blog/article.asp?id=51</link>
			<title><![CDATA[公司迁址公告！]]></title>
			<author>best@yuyaopages.com(admin)</author>
			<category><![CDATA[最新动态]]></category>
			<pubDate>Sat,10 Jan 2009 08:51:48 +0800</pubDate>
			<guid>http://www.yuyaopages.com/blog/default.asp?id=51</guid>
		<description><![CDATA[<p>&nbsp;&nbsp;&nbsp; 尊敬的客户：</p>
<p>&nbsp;&nbsp;&nbsp; 为适应公司日益增长的业务发展需要，为您提供更优质的服务，余姚市中亚网络科技有限公司于2009年1月1日喜迁新址，具体地址如下：</p>
<p>&nbsp;&nbsp;&nbsp; 地址：余姚市东旱门南路188号多元创业大厦B幢406室（315400）<br />
&nbsp;&nbsp;&nbsp; 电话：0574-62775659&nbsp; 22705659&nbsp;&nbsp;&nbsp; 传真：0574－22705659<br />
<br />
&nbsp;&nbsp;&nbsp; 欢迎您届时按照新的联系方式与我们联系，期望您一如既往地支持我们。如因迁址给您造成不便，我们深表歉意。祝事业发达！</p>
<p>&nbsp;&nbsp;&nbsp; 顺致商祺！余姚市中亚网络科技有限公司 2009年1月1日<br />
<img alt="" hspace="2" vspace="2" border="1" src="http://www.yuyaopages.com/blog/attachments/month_0901/p200911085024.jpg" /><br />
<br />
<img alt="" hspace="2" vspace="2" border="1" src="http://www.yuyaopages.com/blog/attachments/month_0901/g200911085122.jpg" /></p>]]></description>
		</item>
		
			<item>
			<link>http://www.yuyaopages.com/blog/article.asp?id=50</link>
			<title><![CDATA[Yuyao Global Trade &amp; Technology Cooperation Co.]]></title>
			<author>best@yuyaopages.com(admin)</author>
			<category><![CDATA[客户案例 网站]]></category>
			<pubDate>Thu,18 Dec 2008 12:37:28 +0800</pubDate>
			<guid>http://www.yuyaopages.com/blog/default.asp?id=50</guid>
		<description><![CDATA[<p>Yuyao Global Trade &amp; Technology Cooperation Co. Ltd is an enterprise with import and export trade as the main industry. The company has registered capital of 15 million Yuan.</p>
<p>Relying on rich trade experience and solid capital strength, the company fully plays the import and export management power and its products have been sold to more than 100 countries and regions such as Europe and America, Australia and Middle East and so on, meanwhile the company actively adjusts the active trade balance and continues to increase the import trade share. In recent years, the&nbsp; import trade share continues to increase.</p>
<p>The full-time foreign trade talents gathered by the company have provided a good development platform for the vast salesmen with its good reputation, high-quality service and continuously optimized operation concept.&nbsp;&nbsp;</p>
<p>The company has 2 real estate companies, 1 logistics company, and 1 bonding company, 2 hotels and 1 store under it, which have become the new economic growth points of the company. The company has branch office and liaison office in Shanghai, Hangzhou, Ningbo and Hong Kong.</p>
<p>Under the precondition of maintaining the increase of import and export scale, the company actively forms the common development of import and export, industry and service, as well as investment and capital. With the main industry of the company as the main body and remaining coexistence of various economic patterns, steadily promote the company to develop ahead.</p>
<p>As an advanced foreign trade enterprise in Ningbo City, the company has been chosen by Yuyao People&iexcl;&macr;s Government as advanced export enterprise for continuous many years, with the total import and export volume over the years ranking the first in Yuyao City. The company is the only one import practice base appointed by Ningbo Foreign Trade &amp;Economic Cooperation Bureau. <br />
<br />
<img alt="" src="http://www.yuyaopages.com/blog/attachments/month_0812/l20081218123619.jpg" /></p>]]></description>
		</item>
		
</channel>
</rss>
