<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_布丁毛毛----部落阁</title><subtitle type="text">VS2008.NET </subtitle><id>http://feed.cnblogs.com/blog/u/26908/rss</id><updated>2010-07-26T05:20:59Z</updated><author><name>天使毛毛.</name><uri>http://www.cnblogs.com/angelfeather/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/angelfeather/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/26908/rss"/><entry><id>http://www.cnblogs.com/angelfeather/archive/2008/09/19/1294219.html</id><title type="text">区别不同浏览器，CSS hack写法</title><summary type="text">区别不同浏览器，CSS hack写法：区别IE6与FF： background:orange;*background:blue;区别IE6与IE7： background:green!important;background:blue;区别IE7与FF： background:orange;*background:green;区别FF，IE7，IE6： background:orange;*bac...</summary><published>2008-09-19T07:50:00Z</published><updated>2008-09-19T07:50:00Z</updated><author><name>天使毛毛.</name><uri>http://www.cnblogs.com/angelfeather/</uri></author><link rel="alternate" href="http://www.cnblogs.com/angelfeather/archive/2008/09/19/1294219.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/angelfeather/archive/2008/09/19/1294219.html"/><content type="text">区别不同浏览器，CSS hack写法：区别IE6与FF： background:orange;*background:blue;区别IE6与IE7： background:green!important;background:blue;区别IE7与FF： background:orange;*background:green;区别FF，IE7，IE6： background:orange;*bac...</content></entry><entry><id>http://www.cnblogs.com/angelfeather/archive/2008/07/09/1238823.html</id><title type="text">[推荐]13款js编辑器大全</title><summary type="text">13款非常实用的编辑器--找了好久 终于找到拉！！ </summary><published>2008-07-09T05:02:00Z</published><updated>2008-07-09T05:02:00Z</updated><author><name>天使毛毛.</name><uri>http://www.cnblogs.com/angelfeather/</uri></author><link rel="alternate" href="http://www.cnblogs.com/angelfeather/archive/2008/07/09/1238823.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/angelfeather/archive/2008/07/09/1238823.html"/><content type="text">13款非常实用的编辑器--找了好久 终于找到拉！！ </content></entry><entry><id>http://www.cnblogs.com/angelfeather/archive/2008/07/08/1238121.html</id><title type="text">web标准 CSS Sprites</title><summary type="text">CSS Sprites技术不新鲜，早在2005年 CSS Zengarden 的园主 Dave Shea就在ALA发表对该技术的详细阐述。原先只在CSS玩家之间作为一种制作方法流传，后来出来个14 Rules for Faster-Loading Web Sites, 技术人员之间竞相传阅，其中第一条规则Make Fewer HTTP Requests就提到CSS Sprites。于是这个小妖精就火了起来，甚至出现了在线生成工具，势不可挡也。近来国内很多blog都提到CSS Sprites，最著名的例子莫过于 http://www.google.co.kr/ 下方的那几个动画。最新发布的YUI中，也是使用到CSS Sprites，几乎都有的CSS装饰图都被一个40×2000的图包办。社交大站Facebook最近也使用了一个22×1150的图片承担了所有icon. 一时间，CSS Sprites无处不在。</summary><published>2008-07-08T05:40:00Z</published><updated>2008-07-08T05:40:00Z</updated><author><name>天使毛毛.</name><uri>http://www.cnblogs.com/angelfeather/</uri></author><link rel="alternate" href="http://www.cnblogs.com/angelfeather/archive/2008/07/08/1238121.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/angelfeather/archive/2008/07/08/1238121.html"/><content type="text">CSS Sprites技术不新鲜，早在2005年 CSS Zengarden 的园主 Dave Shea就在ALA发表对该技术的详细阐述。原先只在CSS玩家之间作为一种制作方法流传，后来出来个14 Rules for Faster-Loading Web Sites, 技术人员之间竞相传阅，其中第一条规则Make Fewer HTTP Requests就提到CSS Sprites。于是这个小妖精就火了起来，甚至出现了在线生成工具，势不可挡也。近来国内很多blog都提到CSS Sprites，最著名的例子莫过于 http://www.google.co.kr/ 下方的那几个动画。最新发布的YUI中，也是使用到CSS Sprites，几乎都有的CSS装饰图都被一个40×2000的图包办。社交大站Facebook最近也使用了一个22×1150的图片承担了所有icon. 一时间，CSS Sprites无处不在。</content></entry><entry><id>http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225951.html</id><title type="text">用户控件(.ascx)与网页间(.aspx)如何传值的几种方法</title><summary type="text">1.aspx文件:public void SetLabel(string str) { this.Label1.Text = str; ; } ascx文件;protected void Button1_Click(object sender, EventArgs e) { System.Web.UI.Page p = this.Page; Type pageType = p.GetType();...</summary><published>2008-06-19T06:55:00Z</published><updated>2008-06-19T06:55:00Z</updated><author><name>天使毛毛.</name><uri>http://www.cnblogs.com/angelfeather/</uri></author><link rel="alternate" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225951.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225951.html"/><content type="text">1.aspx文件:public void SetLabel(string str) { this.Label1.Text = str; ; } ascx文件;protected void Button1_Click(object sender, EventArgs e) { System.Web.UI.Page p = this.Page; Type pageType = p.GetType();...</content></entry><entry><id>http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225934.html</id><title type="text">彩色验证码</title><summary type="text">private void CreateImage(string checkCode) { int iwidth = (int)(checkCode.Length * 15); System.Drawing.Bitmap image = new System.Drawing.Bitmap(iwidth, 25); Graphics g = Graphics.FromImage(image); g.C...</summary><published>2008-06-19T06:47:00Z</published><updated>2008-06-19T06:47:00Z</updated><author><name>天使毛毛.</name><uri>http://www.cnblogs.com/angelfeather/</uri></author><link rel="alternate" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225934.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225934.html"/><content type="text">private void CreateImage(string checkCode) { int iwidth = (int)(checkCode.Length * 15); System.Drawing.Bitmap image = new System.Drawing.Bitmap(iwidth, 25); Graphics g = Graphics.FromImage(image); g.C...</content></entry><entry><id>http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225931.html</id><title type="text">一段常用的Page_Load事件 (如果有更好的希望大家留言)</title><summary type="text">protected void Page_Load(object sender, EventArgs e) { SqlConnection myConnection = new SqlConnection("server=Localhost;database=pubs;uid=sa;pwd=;");//创建SQL连接 SqlCommand myCommand = new SqlCommand("...</summary><published>2008-06-19T06:46:00Z</published><updated>2008-06-19T06:46:00Z</updated><author><name>天使毛毛.</name><uri>http://www.cnblogs.com/angelfeather/</uri></author><link rel="alternate" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225931.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225931.html"/><content type="text">protected void Page_Load(object sender, EventArgs e) { SqlConnection myConnection = new SqlConnection("server=Localhost;database=pubs;uid=sa;pwd=;");//创建SQL连接 SqlCommand myCommand = new SqlCommand("...</content></entry><entry><id>http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225926.html</id><title type="text"> c#.net常用函数和方法集</title><summary type="text">1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 int 日=curre...</summary><published>2008-06-19T06:44:00Z</published><updated>2008-06-19T06:44:00Z</updated><author><name>天使毛毛.</name><uri>http://www.cnblogs.com/angelfeather/</uri></author><link rel="alternate" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225926.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225926.html"/><content type="text">1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 int 日=curre...</content></entry><entry><id>http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225922.html</id><title type="text">ASP.NET中$#=的用法</title><summary type="text">&lt;%$ %&gt;获取App_GlobalResources中message.resx文件中的B0011对应的字符串 &lt;asp:Button ID="btnExecute" runat="server" CssClass="pressedbutton" Font-Bold="True" Text="&lt;%$ Resources:Message, B0011 %&gt;" /&gt;...</summary><published>2008-06-19T06:43:00Z</published><updated>2008-06-19T06:43:00Z</updated><author><name>天使毛毛.</name><uri>http://www.cnblogs.com/angelfeather/</uri></author><link rel="alternate" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225922.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225922.html"/><content type="text">&lt;%$ %&gt;获取App_GlobalResources中message.resx文件中的B0011对应的字符串 &lt;asp:Button ID="btnExecute" runat="server" CssClass="pressedbutton" Font-Bold="True" Text="&lt;%$ Resources:Message, B0011 %&gt;" /&gt;...</content></entry><entry><id>http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225919.html</id><title type="text">利用MD5加密数据库中的密码</title><summary type="text">.NET提供了进行数据加密类，下面就用例子进行说明如何使用MD5进行数据加密。 首先，创建一个UserAccount表，字段两个：UserName和Password，类型分别为varchar(25)和binary(16)，下面的ASP.NET代码就是创建用户时的具体实现： &lt;%@ Import Namespace="System.Security.Cryptography" %&gt;&amp;lt...</summary><published>2008-06-19T06:42:00Z</published><updated>2008-06-19T06:42:00Z</updated><author><name>天使毛毛.</name><uri>http://www.cnblogs.com/angelfeather/</uri></author><link rel="alternate" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225919.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225919.html"/><content type="text">.NET提供了进行数据加密类，下面就用例子进行说明如何使用MD5进行数据加密。 首先，创建一个UserAccount表，字段两个：UserName和Password，类型分别为varchar(25)和binary(16)，下面的ASP.NET代码就是创建用户时的具体实现： &lt;%@ Import Namespace="System.Security.Cryptography" %&gt;&amp;lt...</content></entry><entry><id>http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225881.html</id><title type="text">小记一篇~</title><summary type="text">&lt;%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mao.ascx.cs" Inherits="mao" %&gt;&lt;asp:Repeater ID="rpt_mao" runat="server"&gt;&lt;ItemTemplate&gt;&lt;a href='&lt;%# Eval("link") %&amp;g...</summary><published>2008-06-19T06:07:00Z</published><updated>2008-06-19T06:07:00Z</updated><author><name>天使毛毛.</name><uri>http://www.cnblogs.com/angelfeather/</uri></author><link rel="alternate" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225881.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/angelfeather/archive/2008/06/19/1225881.html"/><content type="text">&lt;%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mao.ascx.cs" Inherits="mao" %&gt;&lt;asp:Repeater ID="rpt_mao" runat="server"&gt;&lt;ItemTemplate&gt;&lt;a href='&lt;%# Eval("link") %&amp;g...</content></entry></feed>
