<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_Program Life</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/41559/rss</id><updated>2010-07-16T05:46:42Z</updated><author><name>fmxyw</name><uri>http://www.cnblogs.com/fmxyw/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/fmxyw/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/41559/rss"/><entry><id>http://www.cnblogs.com/fmxyw/archive/2010/04/27/1722118.html</id><title type="text">C#加密方法汇总</title><summary type="text">方法一：//须添加对System.Web的引用usingSystem.Web.Security;...///&lt;summary&gt;///SHA1加密字符串///&lt;/summary&gt;///&lt;paramname="source"&gt;源字符串&lt;/param&gt;///&lt;returns&gt;加密后的字符串&lt;/returns&gt;publicstring...</summary><published>2010-04-27T07:58:00Z</published><updated>2010-04-27T07:58:00Z</updated><author><name>fmxyw</name><uri>http://www.cnblogs.com/fmxyw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/fmxyw/archive/2010/04/27/1722118.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/fmxyw/archive/2010/04/27/1722118.html"/><content type="text">方法一：//须添加对System.Web的引用usingSystem.Web.Security;...///&lt;summary&gt;///SHA1加密字符串///&lt;/summary&gt;///&lt;paramname="source"&gt;源字符串&lt;/param&gt;///&lt;returns&gt;加密后的字符串&lt;/returns&gt;publicstring...</content></entry><entry><id>http://www.cnblogs.com/fmxyw/archive/2010/03/24/1694079.html</id><title type="text">一个c#的与web服务器交互的HttpClient类</title><summary type="text">using System;using System.Collections.Generic;using System.IO;using System.Text;using System.Net;using System.Web;namespace Deerchao.Utility{ public class HttpClient { #region fields private bool keep...</summary><published>2010-03-24T11:15:00Z</published><updated>2010-03-24T11:15:00Z</updated><author><name>fmxyw</name><uri>http://www.cnblogs.com/fmxyw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/fmxyw/archive/2010/03/24/1694079.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/fmxyw/archive/2010/03/24/1694079.html"/><content type="text">using System;using System.Collections.Generic;using System.IO;using System.Text;using System.Net;using System.Web;namespace Deerchao.Utility{ public class HttpClient { #region fields private bool keep...</content></entry><entry><id>http://www.cnblogs.com/fmxyw/archive/2010/03/24/1694076.html</id><title type="text">HttpWebRequest 向网站提交数据</title><summary type="text">HttpWebRequest 是 .net 基类库中的一个类，在命名空间 System.Net 下面，用来使用户通过 HTTP 协议和服务器交互。HttpWebRequest 对 HTTP 协议进行了完整的封装，对 HTTP 协议中的 Header, Content, Cookie 都做了属性和方法的支持，很容易就能编写出一个模拟浏览器自动登录的程序。程序使用 HTTP 协议和服务器交互主要是进行...</summary><published>2010-03-24T11:14:00Z</published><updated>2010-03-24T11:14:00Z</updated><author><name>fmxyw</name><uri>http://www.cnblogs.com/fmxyw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/fmxyw/archive/2010/03/24/1694076.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/fmxyw/archive/2010/03/24/1694076.html"/><content type="text">HttpWebRequest 是 .net 基类库中的一个类，在命名空间 System.Net 下面，用来使用户通过 HTTP 协议和服务器交互。HttpWebRequest 对 HTTP 协议进行了完整的封装，对 HTTP 协议中的 Header, Content, Cookie 都做了属性和方法的支持，很容易就能编写出一个模拟浏览器自动登录的程序。程序使用 HTTP 协议和服务器交互主要是进行...</content></entry><entry><id>http://www.cnblogs.com/fmxyw/archive/2010/03/24/1693450.html</id><title type="text">Ajax.Request方法</title><summary type="text">Ajax.Request(url,{method:method,parameters:para,postBody:xmlString,asynchronous:true,setRequestHeader:Object,onComplete:completeFun,onError:errorFun})发送异步请求。（此方法是为兼容 prototype.js 而写，调用风格与 prototype 一致...</summary><published>2010-03-24T01:39:00Z</published><updated>2010-03-24T01:39:00Z</updated><author><name>fmxyw</name><uri>http://www.cnblogs.com/fmxyw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/fmxyw/archive/2010/03/24/1693450.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/fmxyw/archive/2010/03/24/1693450.html"/><content type="text">Ajax.Request(url,{method:method,parameters:para,postBody:xmlString,asynchronous:true,setRequestHeader:Object,onComplete:completeFun,onError:errorFun})发送异步请求。（此方法是为兼容 prototype.js 而写，调用风格与 prototype 一致...</content></entry><entry><id>http://www.cnblogs.com/fmxyw/archive/2010/03/09/1681605.html</id><title type="text">javascript小数四舍五入</title><summary type="text">用Javascript取float型小数点后两位，例22.127456取成22.13,如何做？1. 最笨的办法.......function get(){ var s = 22.127456 + ""; var str = s.substring(0,s.indexOf(".") + 3); alert(str);}2. 正则表达式效果不错&lt;script type="text/javascr...</summary><published>2010-03-09T05:43:00Z</published><updated>2010-03-09T05:43:00Z</updated><author><name>fmxyw</name><uri>http://www.cnblogs.com/fmxyw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/fmxyw/archive/2010/03/09/1681605.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/fmxyw/archive/2010/03/09/1681605.html"/><content type="text">用Javascript取float型小数点后两位，例22.127456取成22.13,如何做？1. 最笨的办法.......function get(){ var s = 22.127456 + ""; var str = s.substring(0,s.indexOf(".") + 3); alert(str);}2. 正则表达式效果不错&lt;script type="text/javascr...</content></entry><entry><id>http://www.cnblogs.com/fmxyw/archive/2010/02/26/1674447.html</id><title type="text">深入了解 Microsoft.VisualBasic.Strings.StrConv 简繁转换</title><summary type="text">先來觀察 Strings.StrConv 方法的簽名:public staticstringStrConv(stringstr,VbStrConvConversion, [Optional,DefaultParameterValue(0)]intLocaleID)第三個參數和 MSDN 上的文件有點不同, 上面的簽名是從 Reflector 中摘出來的, 也是這篇文章要記錄的重點, 先來看一些範例...</summary><published>2010-02-26T09:23:00Z</published><updated>2010-02-26T09:23:00Z</updated><author><name>fmxyw</name><uri>http://www.cnblogs.com/fmxyw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/fmxyw/archive/2010/02/26/1674447.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/fmxyw/archive/2010/02/26/1674447.html"/><content type="text">先來觀察 Strings.StrConv 方法的簽名:public staticstringStrConv(stringstr,VbStrConvConversion, [Optional,DefaultParameterValue(0)]intLocaleID)第三個參數和 MSDN 上的文件有點不同, 上面的簽名是從 Reflector 中摘出來的, 也是這篇文章要記錄的重點, 先來看一些範例...</content></entry><entry><id>http://www.cnblogs.com/fmxyw/archive/2010/02/20/1669874.html</id><title type="text">实现Google Calendar(日历)的几个推荐方案</title><summary type="text">如果你正在为寻找一个类似google日历的控件而烦恼，那么你非常有必要看这篇文章。通过文章中介绍的控件，你可以完全制作出一个属于自己的calendar日程管理。首席推荐（Fullcalendar）：官方演示：http://arshaw.com/fullcalendar/通过Fullcalendar，你可以做出一个完全类似google日历的程序。它使用起来不难，因为它是基于jQuery UI的，继承...</summary><published>2010-02-20T09:18:00Z</published><updated>2010-02-20T09:18:00Z</updated><author><name>fmxyw</name><uri>http://www.cnblogs.com/fmxyw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/fmxyw/archive/2010/02/20/1669874.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/fmxyw/archive/2010/02/20/1669874.html"/><content type="text">如果你正在为寻找一个类似google日历的控件而烦恼，那么你非常有必要看这篇文章。通过文章中介绍的控件，你可以完全制作出一个属于自己的calendar日程管理。首席推荐（Fullcalendar）：官方演示：http://arshaw.com/fullcalendar/通过Fullcalendar，你可以做出一个完全类似google日历的程序。它使用起来不难，因为它是基于jQuery UI的，继承...</content></entry><entry><id>http://www.cnblogs.com/fmxyw/archive/2010/01/22/1654072.html</id><title type="text">一个销售冠军的30个思维模式</title><summary type="text">一、外表：为成功而打扮。 1、职业套装是"第一笔"投资。 2、设想"你心目中的成功者的妆扮"是怎么样的？ 二、思维会影响行动--行动会影响情感。 1、你有潜意识。 2、你有潜能。 3、成功只须选择正确的习惯。三、专家的自信： 以微笑的目光"直视"对方。 大声地告诉对方（不论是谁！）：我是专家，我会教你正确的方法。 四、目标培训法： 让我们来看看你会以"此项事业"中，获得哪些益处？ 五、讲演能力训...</summary><published>2010-01-22T04:57:00Z</published><updated>2010-01-22T04:57:00Z</updated><author><name>fmxyw</name><uri>http://www.cnblogs.com/fmxyw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/fmxyw/archive/2010/01/22/1654072.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/fmxyw/archive/2010/01/22/1654072.html"/><content type="text">一、外表：为成功而打扮。 1、职业套装是"第一笔"投资。 2、设想"你心目中的成功者的妆扮"是怎么样的？ 二、思维会影响行动--行动会影响情感。 1、你有潜意识。 2、你有潜能。 3、成功只须选择正确的习惯。三、专家的自信： 以微笑的目光"直视"对方。 大声地告诉对方（不论是谁！）：我是专家，我会教你正确的方法。 四、目标培训法： 让我们来看看你会以"此项事业"中，获得哪些益处？ 五、讲演能力训...</content></entry><entry><id>http://www.cnblogs.com/fmxyw/archive/2010/01/22/1654073.html</id><title type="text">销售人员自我提升的六条箴言</title><summary type="text">一个自我不愿提升的销售业务人员得到在的发展的机率是多少，我想一定不超过百分之三，所以说销售业务人员想要发展自己必定要有此“志”，并且能够很好地进行自我提升，经验得以积累，技能得以提高，心态得以稳定坚韧，具有大将之风，才能成就大将之事。对于销售量业务人员自我提升，本人有六条自我总结的座右铭，想与大家一起分享。第一、勤能补拙是良训，一分辛劳一分材。一个勤奋的人，能从小面包师...</summary><published>2010-01-22T04:57:00Z</published><updated>2010-01-22T04:57:00Z</updated><author><name>fmxyw</name><uri>http://www.cnblogs.com/fmxyw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/fmxyw/archive/2010/01/22/1654073.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/fmxyw/archive/2010/01/22/1654073.html"/><content type="text">一个自我不愿提升的销售业务人员得到在的发展的机率是多少，我想一定不超过百分之三，所以说销售业务人员想要发展自己必定要有此“志”，并且能够很好地进行自我提升，经验得以积累，技能得以提高，心态得以稳定坚韧，具有大将之风，才能成就大将之事。对于销售量业务人员自我提升，本人有六条自我总结的座右铭，想与大家一起分享。第一、勤能补拙是良训，一分辛劳一分材。一个勤奋的人，能从小面包师...</content></entry><entry><id>http://www.cnblogs.com/fmxyw/archive/2010/01/17/1649865.html</id><title type="text">BOM的概念和重要性</title><summary type="text">BOM的概念和重要性:物料清单（Bill Of Material 简称BOM）是详细记录一个项目所用到的所有下阶材料及相关属性，亦即，母件与所有子件的从属关系、单位用量及其他属性.在有些系统称为材料表或配方料表。在ERP系统要正确地计算出物料需求数量和时间，必须有一个准确而完整的产品结构表，来反映生产产品与其组件的数量和从属关系。在所有数据中，物料清单的影响面最大，对它的准确性要求也相当高。物料清...</summary><published>2010-01-17T00:17:00Z</published><updated>2010-01-17T00:17:00Z</updated><author><name>fmxyw</name><uri>http://www.cnblogs.com/fmxyw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/fmxyw/archive/2010/01/17/1649865.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/fmxyw/archive/2010/01/17/1649865.html"/><content type="text">BOM的概念和重要性:物料清单（Bill Of Material 简称BOM）是详细记录一个项目所用到的所有下阶材料及相关属性，亦即，母件与所有子件的从属关系、单位用量及其他属性.在有些系统称为材料表或配方料表。在ERP系统要正确地计算出物料需求数量和时间，必须有一个准确而完整的产品结构表，来反映生产产品与其组件的数量和从属关系。在所有数据中，物料清单的影响面最大，对它的准确性要求也相当高。物料清...</content></entry></feed>
