自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

张刚红

致力于IT行业,体现知识和智慧的巅峰!展现 0-1思维,软件中蕴含着艺术和思维的生命!

  • 博客(2)
  • 资源 (3)
  • 收藏
  • 关注

原创 Hadoop 1.0.4+Hbase-0.94.6在linux上的配置与开发(一)

1. 需要的软件    (1) Vmware(我用的是Vmware7.1.4)    (2)linux(我用的是RedHat 9.0)    (3) hadoop-1.0.4.tar    (4) jdk-6u41-linux-i586-rpm.bin(1.6版本以上)    (5)Hbase-0.94.7.tar.gz    (6)zookeeper-3.4.5.tar.gz(sta

2013-05-29 16:16:27 1561

原创 大学四年的总结与感受

大学毕业已有两年,如今回想起自己大学四年的学习生涯,心有所感。         刚考上大学的我对大学生活充满着欢乐与期待。在父亲和姐姐的陪同下,我来到了大学,进入大学的第一天,看到的是大学的宏伟、校园的美丽、浓浓的学习氛围以及灿烂的笑容。         因为自己的爱好,在报考大学时选择了计算机专业,也对自己的专业充满信心。开学第一天,来自各地的学生聚集在教室,积极的交流着,每个人都讨论着自己

2013-03-21 19:02:29 3636 3

算法分析与设计程序

算法分析与设计中相关算法的C与C++代码,所有算法代码均在VC6.0上调试通过,且有详细的注释说明。

2013-03-22

Ajax 日期控件在asp.net 中的实现

using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; namespace WebTest { /// <summary> /// WebForm1 的摘要说明。 /// </summary> public class WebForm1 : System.Web.UI.Page { protected HFSoft.Web.DatePicker DatePicker2; protected HFSoft.Web.DatePicker DatePicker3; protected HFSoft.Web.Calendar Calendar1; protected HFSoft.Web.DatePicker DatePicker1; private void Page_Load(object sender, System.EventArgs e) { // 在此处放置用户代码以初始化页面 } #region Web 窗体设计器生成的代码 override protected void OnInit(EventArgs e) { // // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。 // InitializeComponent(); base.OnInit(e); } /// <summary> /// 设计器支持所需的方法 - 不要使用代码编辑器修改 /// 此方法的内容。 /// </summary> private void InitializeComponent() { this.DatePicker1.Change += new HFSoft.Web.EventDayChange(this.DatePicker1_Change); this.DatePicker1.DayItemCreating += new HFSoft.Web.EventDayItemCreating(this.Calendar2_DayItemCreating); this.Calendar1.DayItemCreating += new HFSoft.Web.EventDayItemCreating(this.Calendar1_DayItemCreating); this.Load += new System.EventHandler(this.Page_Load); } #endregion private void Calendar2_Change(object source, HFSoft.Web.EventDayChangeArgs e) { Response.Write(e.Date.ToShortDateString()); } private void Calendar2_DayItemCreating(object source, HFSoft.Web.EventDayItemArgs e) { if(e.Item.Date.Month ==7 && e.Item.Date.Day ==6) { e.Item.Text +="<br>生日"; e.Item.Attributes.Add("bgColor","#ff9966"); } } private void DatePicker1_Change(object source, HFSoft.Web.EventDayChangeArgs e) { } private void Calendar1_DayItemCreating(object source, HFSoft.Web.EventDayItemArgs e) { if(e.Item.Date.Day==28) { e.Item.Text +="<br>交房租"; e.Item.Attributes.Add("bgColor","#ff9966"); } } } }

2010-04-04

fckeditor配置

<%@ Page language="c#" Trace="false" Inherits="FredCK.FCKeditorV2.Uploader" AutoEventWireup="false" %> <%-- * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * This is the Uploader for ASP.NET. * * The code of this page if included in the FCKeditor.Net package, * in the FredCK.FCKeditorV2.dll assemblyfile. So to use it you must * include that DLL in your "bin" directory. * * To download the FCKeditor.Net package, go to our official web site:

2010-04-03

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除