<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<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/"
	>

<channel>
	<title>娱乐事</title>
	<link>http://www.yule4.com</link>
	<description>致力于 Coldfusion 开发</description>
	<pubDate>Tue, 04 Nov 2008 23:20:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>招聘 网络兼职</title>
		<link>http://www.yule4.com/?p=414</link>
		<comments>http://www.yule4.com/?p=414#comments</comments>
		<pubDate>Tue, 04 Nov 2008 23:18:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[事业]]></category>

		<guid isPermaLink="false">http://www.yule4.com/?p=414</guid>
		<description><![CDATA[招聘网络打字员，多劳多得，工资次日结算
如果你努力一天20-30元不是问题
条件：充足的上网时间
招聘QQ：972500672【记得注明 网络兼职】
 注意，加我的人不要有怀疑的心态，那样子大家都不好做，慎加！！！
]]></description>
			<content:encoded><![CDATA[<p>招聘网络打字员，多劳多得，工资次日结算<br />
如果你努力一天20-30元不是问题</p>
<p>条件：充足的上网时间</p>
<p>招聘QQ：972500672【记得注明 网络兼职】</p>
<p> 注意，加我的人不要有怀疑的心态，那样子大家都不好做，慎加！！！</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yule4.com/?feed=rss2&amp;p=414</wfw:commentRss>
		</item>
		<item>
		<title>php 通过代理访问网站</title>
		<link>http://www.yule4.com/?p=412</link>
		<comments>http://www.yule4.com/?p=412#comments</comments>
		<pubDate>Thu, 30 Oct 2008 04:41:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[技术杂文]]></category>

		<guid isPermaLink="false">http://www.yule4.com/?p=412</guid>
		<description><![CDATA[&#60;?
function curl_string ($url,$user_agent,$proxy){
$ch = curl_init();
curl_setopt ($ch, CURLOPT_PROXY, $proxy);
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_USERAGENT, $user_agent);
curl_setopt ($ch, CURLOPT_COOKIEJAR, &#8220;c:\cookie.txt&#8221;);
curl_setopt ($ch, CURLOPT_HEADER, 1);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt ($ch, CURLOPT_TIMEOUT, 120);
$result = curl_exec ($ch);
curl_close($ch);
return $result;
}
$url_page = http://www.yule4.com;
$user_agent = &#8220;Mozilla/4.0&#8243;;
$proxy = &#8220;http://192.11.222.124:8000&#8243;;
$string = curl_string($url_page,$user_agent,$proxy);
echo $string;
?&#62;
]]></description>
			<content:encoded><![CDATA[<p>&lt;?<br />
function curl_string ($url,$user_agent,$proxy){</p>
<p>$ch = curl_init();<br />
curl_setopt ($ch, CURLOPT_PROXY, $proxy);<br />
curl_setopt ($ch, CURLOPT_URL, $url);<br />
curl_setopt ($ch, CURLOPT_USERAGENT, $user_agent);<br />
curl_setopt ($ch, CURLOPT_COOKIEJAR, &#8220;c:\cookie.txt&#8221;);<br />
curl_setopt ($ch, CURLOPT_HEADER, 1);<br />
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);<br />
curl_setopt ($ch, CURLOPT_TIMEOUT, 120);<br />
$result = curl_exec ($ch);<br />
curl_close($ch);<br />
return $result;</p>
<p>}</p>
<p>$url_page = <a href="http://www.yule4.com/">http://www.yule4.com</a>;<br />
$user_agent = &#8220;Mozilla/4.0&#8243;;<br />
$proxy = &#8220;http://192.11.222.124:8000&#8243;;<br />
$string = curl_string($url_page,$user_agent,$proxy);<br />
echo $string;<br />
?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yule4.com/?feed=rss2&amp;p=412</wfw:commentRss>
		</item>
		<item>
		<title>C# 通过代理获取网页内容</title>
		<link>http://www.yule4.com/?p=411</link>
		<comments>http://www.yule4.com/?p=411#comments</comments>
		<pubDate>Thu, 30 Oct 2008 04:26:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.yule4.com/?p=411</guid>
		<description><![CDATA[string urlStr = &#8220;http://www.domain.com&#8221;;                            //設定要獲取的地址
HttpWebRequest hwr = (HttpWebRequest)HttpWebRequest.Create(urlStr);    //建立HttpWebRequest對象
hwr.Timeout = 60000;               [...]]]></description>
			<content:encoded><![CDATA[<p>string urlStr = &#8220;http://www.domain.com&#8221;;                            //設定要獲取的地址<br />
HttpWebRequest hwr = (HttpWebRequest)HttpWebRequest.Create(urlStr);    //建立HttpWebRequest對象<br />
hwr.Timeout = 60000;                                                //定義服務器超時時間<br />
WebProxy proxy = new WebProxy();                                    //定義一個網關對象<br />
proxy.Address = new Uri(&#8221;http://proxy.domain.com:3128&#8243;);            //網關服務器:端口<br />
proxy.Credentials = new NetworkCredential(&#8221;f3210316&#8243;, &#8220;6978233&#8243;);    //用戶名,密碼<br />
hwr.UseDefaultCredentials = true;                                    //啟用網關認証<br />
hwr.Proxy = proxy;                                                    //設置網關<br />
HttpWebResponse hwrs = (HttpWebResponse)hwr.GetResponse();            //取得回應<br />
Stream s = hwrs.GetResponseStream();                                //得到回應的流對象<br />
StreamReader sr = new StreamReader(s, Encoding.UTF8);                //以UTF-8編碼讀取流<br />
StringBuilder content = new StringBuilder();                        //<br />
while (sr.Peek() != -1)                                                //每次讀取一行,直到<br />
{                                                                    //下一個字節沒有內容<br />
    content.Append(sr.ReadLine()+&#8221;\r\n&#8221;);                            //返回為止<br />
}                                                                    //<br />
return content.ToString() ;                                            //返回得到的字符串</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yule4.com/?feed=rss2&amp;p=411</wfw:commentRss>
		</item>
		<item>
		<title>Microsoft.XMLHTTP 对象</title>
		<link>http://www.yule4.com/?p=410</link>
		<comments>http://www.yule4.com/?p=410#comments</comments>
		<pubDate>Thu, 30 Oct 2008 01:18:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ASP]]></category>

		<guid isPermaLink="false">http://www.yule4.com/?p=410</guid>
		<description><![CDATA[MSXML中提供了Microsoft.XMLHTTP对象，能够完成从数据包到Request对象的转换以及发送任务。
创建XMLHTTP对象的语句如下：
Set objXML = createObject(Msxml2.XMLHTTP) 或
Set objXML = createObject(&#8221;Microsoft.XMLHTTP&#8221;)
&#8216; Or, for version 3.0 of XMLHTTP, use:
&#8216; Set xml = Server.createObject(MSXML2.ServerXMLHTTP)
对象创建后调用Open方法对Request对象进行初始化，语法格式为：
poster.open http-method, url, async, userID, password
Open方法中包含了5个参数，前三个是必要的，后两个是可选的(在服务器需要进行身份验证时提供)。参数的含义如下所示：
]]></description>
			<content:encoded><![CDATA[<p>MSXML中提供了Microsoft.XMLHTTP对象，能够完成从数据包到Request对象的转换以及发送任务。<br />
创建XMLHTTP对象的语句如下：<br />
Set objXML = createObject(Msxml2.XMLHTTP) 或<br />
Set objXML = createObject(&#8221;Microsoft.XMLHTTP&#8221;)<br />
&#8216; Or, for version 3.0 of XMLHTTP, use:<br />
&#8216; Set xml = Server.createObject(MSXML2.ServerXMLHTTP)<br />
对象创建后调用Open方法对Request对象进行初始化，语法格式为：<br />
poster.open http-method, url, async, userID, password<br />
Open方法中包含了5个参数，前三个是必要的，后两个是可选的(在服务器需要进行身份验证时提供)。参数的含义如下所示：</p>
<p> <a href="http://www.yule4.com/?p=410#more-410" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yule4.com/?feed=rss2&amp;p=410</wfw:commentRss>
		</item>
		<item>
		<title>沈阳 进销存 软件</title>
		<link>http://www.yule4.com/?p=409</link>
		<comments>http://www.yule4.com/?p=409#comments</comments>
		<pubDate>Mon, 27 Oct 2008 00:36:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[事业]]></category>

		<guid isPermaLink="false">http://www.yule4.com/?p=409</guid>
		<description><![CDATA[市场经济发展逐渐成熟，促使竞争越来越激烈，每个竞争者都面临着生存与发展的严峻考验，落后的经营模式，从根本上适应不了当前激烈竞争的市场需求，尤为显示了改变现状的重要性、必要性，这也是经济发展的客观性。要在人、财、物这些关系生产与发展的关键环节上，快速提升自身的综合竞争实力及适应大环境，就必须以最大限度发挥出人、财、物的能量及提高竞争力。现给大家推介一款经市场培育、验证的实用型经典实效的功能强的进销存业务管理软件，帮助大家扛起重任，最大限度的节省人、财、物。高标准实现您的理想境界，同时该软件易懂，操作方便简洁，在设计上、功能上做到了最大限度人性化的体现，使你用上后获得意想不到的收获，将助你最短时间内提高到高效经营管理的前列，让你胸有成竹的面对复杂多变的市场，助你理想和伟业。本软件以优质高端的品质，市场同类产品最低价位，最完善的售后服务体系保障每一个用的利益。
如果你沈阳的商户，请拨打电话与我联络
手机：13478184425
QQ：47722978
]]></description>
			<content:encoded><![CDATA[<p>市场经济发展逐渐成熟，促使竞争越来越激烈，每个竞争者都面临着生存与发展的严峻考验，落后的经营模式，从根本上适应不了当前激烈竞争的市场需求，尤为显示了改变现状的重要性、必要性，这也是经济发展的客观性。要在人、财、物这些关系生产与发展的关键环节上，快速提升自身的综合竞争实力及适应大环境，就必须以最大限度发挥出人、财、物的能量及提高竞争力。现给大家推介一款经市场培育、验证的实用型经典实效的功能强的进销存业务管理软件，帮助大家扛起重任，最大限度的节省人、财、物。高标准实现您的理想境界，同时该软件易懂，操作方便简洁，在设计上、功能上做到了最大限度人性化的体现，使你用上后获得意想不到的收获，将助你最短时间内提高到高效经营管理的前列，让你胸有成竹的面对复杂多变的市场，助你理想和伟业。本软件以优质高端的品质，市场同类产品最低价位，最完善的售后服务体系保障每一个用的利益。</p>
<p>如果你沈阳的商户，请拨打电话与我联络<br />
手机：13478184425<br />
QQ：47722978</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yule4.com/?feed=rss2&amp;p=409</wfw:commentRss>
		</item>
		<item>
		<title>挂机网赚 日入8元</title>
		<link>http://www.yule4.com/?p=405</link>
		<comments>http://www.yule4.com/?p=405#comments</comments>
		<pubDate>Sat, 18 Oct 2008 02:14:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[网赚]]></category>

		<guid isPermaLink="false">http://www.yule4.com/?p=405</guid>
		<description><![CDATA[
支付宝日结算的挂机项目:一天8-10元,换IP的10元一天
不换IP8元左右 
如果你是站长，更加要下载这个，用这个软件就不用为没人点击你的广告而发愁了，主要的好处是这个软件带来的都是真实的鼠标点击流量
请下载挂机软件
 下载地址:test.rar
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.yule4.com/wp-content/uploads/2008/10/gua.jpg" title="gua.jpg"><img src="http://www.yule4.com/wp-content/uploads/2008/10/gua.jpg" alt="gua.jpg" /></a></p>
<p>支付宝日结算的挂机项目:一天8-10元,换IP的10元一天<br />
不换IP8元左右 </p>
<p>如果你是站长，更加要<span href="tag.php?name=%CF%C2%D4%D8" onclick="tagshow(event)" class="t_tag">下载</span>这个，用这个软件就不用为没人点击你的<span href="tag.php?name=%B9%E3%B8%E6" onclick="tagshow(event)" class="t_tag">广告</span>而发愁了，主要的好处是这个软件带来的都是真实的鼠标点击<span href="tag.php?name=%C1%F7%C1%BF" onclick="tagshow(event)" class="t_tag">流量</span></p>
<p><strong>请下载挂机软件</strong></p>
<p> 下载地址:<a href="http://www.yule4.com/wp-content/uploads/2008/10/test.rar" title="test.rar">test.rar</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yule4.com/?feed=rss2&amp;p=405</wfw:commentRss>
		</item>
		<item>
		<title>实现ADSL自动拨号</title>
		<link>http://www.yule4.com/?p=404</link>
		<comments>http://www.yule4.com/?p=404#comments</comments>
		<pubDate>Thu, 16 Oct 2008 07:02:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[技术杂文]]></category>

		<guid isPermaLink="false">http://www.yule4.com/?p=404</guid>
		<description><![CDATA[ 在网络编程中,有时候会需要重新拨号建立网络连接(如Ad点击软件通过重新拨号形成有效点击) ,下面介绍两种程序中拨号的方法.
1、最简单的方法：使用RasDial命令
    RasDial是Windows自带的命令，使用非常简单。实际使用是可将下面代码保存为一个批处理文件，然后直接运行或在程序里进行调用。
]]></description>
			<content:encoded><![CDATA[<p> 在网络编程中,有时候会需要重新拨号建立网络连接(如Ad点击软件通过重新拨号形成有效点击) ,下面介绍两种程序中拨号的方法.</p>
<p>1、最简单的方法：使用RasDial命令<br />
    RasDial是Windows自带的命令，使用非常简单。实际使用是可将下面代码保存为一个批处理文件，然后直接运行或在程序里进行调用。</p>
<p> <a href="http://www.yule4.com/?p=404#more-404" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yule4.com/?feed=rss2&amp;p=404</wfw:commentRss>
		</item>
	</channel>
</rss>
