摘要: 如果要在asp.net中实现类似windows中计划任何的功能,你会怎么做?您可以在留言里写出您的方法,以便我学习和改进自己的程序,谢谢。以下是我的方法;首先下载Quartz.netweb.config加入以下两个片段代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlight... 阅读全文
posted @ 2010-03-08 16:46 zyip 阅读(1674) 评论(5) 推荐(0) 编辑
摘要: 1.安装操作系统 windows 2003 server enterprise2.设置操作系统时区与与服务器相同3.开启东亚语言支持4.将系统加入域5.创建三个域帐号Devadmin(微软安装手册里建议的是TFSSetup)TFSServiceTFSReports注:其实安装时使用两个帐号就可以了,我就只用了Devadmin和TFSService(只要安装程序的用户和服务用户不同就可以)6.安装i... 阅读全文
posted @ 2010-02-05 13:07 zyip 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 一、说明Team Foundation Server(以下简称TFS)提供源代码管理、工作项跟踪、Team Foundation Build、团队项目门户网站、报告和项目管理功能。TFS还包含一个数据仓库,其中存储来自工作项跟踪、源代码管理、版本和测试工具的数据。TFS的部署模式分为两种,一是单服务器部署,一是双服务器部署,本文主要就单服务器模式的安装进行说明而不涉及双服务器部署的细节和其他领域。... 阅读全文
posted @ 2010-02-04 11:34 zyip 阅读(1159) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/en-us/library/cc298458.aspx msdnhttp://blogs.msdn.com/messenger/default.aspxhttp://dev.live.com/messenger/http://www.microsoft.com/china/msdn/events/webcasts/shared/webcast/S... 阅读全文
posted @ 2009-11-11 09:34 zyip 阅读(183) 评论(0) 推荐(0) 编辑
摘要: TList<SkCategory> r = Laptop.Comm.Provider.CategoryProvider.GetPrimaryCategory(); SkCategory sk1=r[0]; DataRepository.SkCategoryProvider.DeepLoad(r, true, DeepLoadType.IncludeChildren,typeof(SkC... 阅读全文
posted @ 2009-10-29 14:54 zyip 阅读(184) 评论(1) 推荐(0) 编辑
摘要: [代码] 阅读全文
posted @ 2009-09-07 14:29 zyip 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 1.给webserver加 [System.Web.Script.Services.ScriptService]标签如:[代码]2.js[代码] 阅读全文
posted @ 2009-09-07 14:04 zyip 阅读(194) 评论(0) 推荐(0) 编辑
摘要: function a(flag){ $("input[type='checkbox']").each(function(){ $(this).attr("checked", flag); }); } 改变select的text$("#ddlYeargroup")[0].options[0].text="ALL";其他参考 //$("#ddlStep").empty();//清空 //$("#dd... 阅读全文
posted @ 2009-08-25 10:26 zyip 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 问题描述:两个表a,ba中字段为:id,nameb中字段为:id,email,address查询语句:select a.*,b.* from a left join b on a.id=b.id结果为: id name sex id address email----------- -------------------------------------------------- -------... 阅读全文
posted @ 2009-08-19 15:13 zyip 阅读(1550) 评论(29) 推荐(0) 编辑
摘要: 在web服务器端开发中经常会遇到各种不同形式的path,而且经常记不清楚如何获取到某种特定格式,今天抽了点时间把常用的path获取方法与格式做了一个简单的对照表,以备日后查用。Request获取的信息Request.AppRelativeCurrentExecutionFilePath ~/SysOption/BillingSetup1.aspx Request.ApplicationPath /... 阅读全文
posted @ 2009-08-13 10:49 zyip 阅读(3130) 评论(6) 推荐(5) 编辑