摘要: 1.什么是CCNETCCNET是一个代码开发阶段流程的自动管理监控工具;所包括的流程有根据设定的任务从指定的代码库中CHECK OUT代码、然后自动编译、自动代码检查、自动单元测试,并将编译和测试的结果进行记录和反馈(EMAIL方式等),并有还算不错的WEB应用平台进行呈现,也支持一部分的分析工作。2.CCNEET配置主要就是一个ccnet.config,加入一个项目的时候需要修改配置文件,在配置文件加入一个<project></project>,将要加入的项目的配置放入其中,下面就我最近做过的项目加入CCNET的配置文件做一下对CCNET的ccnet.config文件 阅读全文
posted @ 2012-09-25 11:37 717806198 阅读(981) 评论(0) 推荐(0) 编辑
摘要: 计算机右键选择“管理”,启动计算机管理。(或者从开始菜单右侧“管理工具”中“计算机管理”来启动。也可以直接运行“compmgmt.msc /s”命令来启动。)打开服务和应用程序节点,双击“IIS管理器”以启动IIS管理器。如图IIS_001所示。(也可以同上步“管理工具”中“IIS管理器”来启动。或者直接运行“InetMgr.exe”命令启动。若不进行创建用户等其他操作1步骤可以省略)。 图IIS_001打开用户名节点,选择“网站”如图IIS_002所示。右键“添加站点”或者在右边的“操作”中选择“添加站点”(如图IIS_003所示)。图IIS_002图IIS_003在弹出的对话窗口如下图I. 阅读全文
posted @ 2012-09-13 10:01 717806198 阅读(558) 评论(0) 推荐(0) 编辑
摘要: AppDomain.CurrentDomain.BaseDirectory//项目跟路径 this.tempPath = Server.MapPath("UploadResourceImage\\");//上传图片到项目中UploadResourceImage文件夹下 this.tempUrl = "~/Content/UploadResourceImage/"; 阅读全文
posted @ 2012-09-12 17:54 717806198 阅读(186) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// load xml文件 /// </summary> /// <returns></returns> private XmlElement LoadXmlConfig() { XmlDocument xml = new XmlDocument(); xml.LoadXml(LoadFileContent()); return xml.DocumentElement; } /// <summary> ... 阅读全文
posted @ 2012-09-12 16:18 717806198 阅读(159) 评论(0) 推荐(0) 编辑
摘要: public Dictionary<string, int[]> GetWebVisitedTopInfo(Dictionary<string, int[]> websiteVisitInfo, int topCount) { Dictionary<string, int[]> websiteTopinfo = new Dictionary<string, int[]>(); List<KeyValuePair<string, int[]>> list = sortByValue(websiteVisitInfo); .. 阅读全文
posted @ 2012-09-12 16:11 717806198 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 1.根据键值获取value:Dictionary<string, Dictionary<string, int>> reqIpsDicreqIpsDic[key][key]++;或者Dictionary<string,int>reqIpsDicreqIpsDic[key]++reqIpsDic[key]=90//将键为key的值赋为902.根据键添加值:Dictionary<string, Dictionary<string, int>> reqIpsDicreqIpsDic[key].Add(key,value); 阅读全文
posted @ 2012-09-11 16:42 717806198 阅读(245) 评论(0) 推荐(0) 编辑
摘要: <asp:DataList ID="DataListFriend" runat="server" RepeatDirection="Vertical" Width="100%" OnItemCommand="DataListFriend_OnClick" CellPadding="4" DataKeyField="ToId"> <ItemTemplate> <div class="friendItem" s 阅读全文
posted @ 2012-09-11 10:46 717806198 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 1.最近7天:datediff(DAY,lepu_ImplantedDate,getdate()) <72.最近一个月:datediff(day,datefield,getdate())<=303.获取第一条数据:select top(1) DomainName from SystemUser,select top(1) * from SystemUser4.分组并排序:select * from SystemUser group by BusinessUnitIdName order by lepu_Age desc 阅读全文
posted @ 2012-09-11 09:17 717806198 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 最近做了个GridView的数据绑定,在数据库中读取一条记录包含产品名字,植入日期,植入量,要做如下显示:如此数据源就不好绑定,只好把列数做成固定的,绑定最近7天数据,当然此时列标题还是要最时间变化而变化的,代码如下: <asp:GridView RowStyle-Wrap="false" runat="server" ShowHeader="true" AutoGenerateColumns="False" ID="gvData" Width="98%" GridLi 阅读全文
posted @ 2012-09-10 14:46 717806198 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 1.GirdView自动显示编辑模式,设置AutoGenerateEditButton="true"2.GirdView编辑,更新,取消方法protected void Edit_Click(object sender, GridViewEditEventArgs e) { this.gvData.EditIndex = e.NewEditIndex; DateBind(); } protected void gvData_RowUpdating(object sender, GridViewUpdateEv... 阅读全文
posted @ 2012-08-30 10:36 717806198 阅读(321) 评论(0) 推荐(0) 编辑