摘要:
启明星请假单加班单管理系统用户需求说明书下载地址 http://www.dotnetcms.org/download/appform/appform20110509.rar演示地址: http://portal.dotnetcms.org/appform 此系统时为了解决如下的需求而开发:需求如下:1. 要有加班和请假两种申请.2. 加班和请假其实都分两部分,第一部分是管理人员(有电脑的), 第二是所有1线的操作人员(他们没有电脑)3. 初始化的时候要有导入的接口,能把Excel的资料导入到系统里,(部门,组别,姓名,性别,剩余假期等),4.在集成域(Active Directory)的情况下 阅读全文
摘要:
/****************************** Module Header ******************************\* Module Name: Default.aspx.cs* Project: CSASPNETStripHtmlCode* Copyright (c) Microsoft Corporation** This page retrieve the entire html code from SourcePage.aspx.* User can strip or parse many parts of html code, such as p 阅读全文
摘要:
系统优化,Cache,Session,Item,Cookie,ViewState,一个都不能少 阅读全文
摘要:
企业假单(加班单和请假单)是HR日常的一个工作,启明星工作室退出的假单管理可以解决这个问题包括年休假设置,职级设置,假期审批等待,demohttp://demo.dotnetcms.prg/appform 阅读全文
摘要:
[] 与 {} 在 JSON 里 [] 是 Array(也就是数组) {} 是Ojbect(也就是对象) [] Array 的key 是 int. {} 的key 是 string 例如 var dot1=["a"]; 就是一个数组 var dot2={"a"} 就是一个对象数组和对象转换非常简单,... 阅读全文
摘要:
本文根据 http://tutorialzine.com/2010/01/sticky-notes-ajax-php-jquery/编写,并增加了删除功能演示: http://demo.tutorialzine.com/2010/01/sticky-notes-ajax-php-jquery/demo.php主要代码是1)建立标签内容 string sql = " SELECT * FROM worklog_notes where username='"+User.Identity.Name+"' ORDER BY id DESC "; 阅读全文
摘要:
function(i) {
var t = aLiTab[i];
t.onclick = function c() {
if (nFocus != i) {
aLiTab[nFocus].className = "";
aDivTab[nFocus].style.display = "none";
nFocus = i;
aLiTab[nFocus].className = "on";
aDivTab[nFocus].style.display 阅读全文
摘要:
using System;using System.Collections.Generic;public static class EnumHelper{ public static int GetNumberByEnumTEnum(TEnum e) { return Convert.ToInt32(Enum.Parse(typeof(TEnum), e.ToString())); } public static TEnum GetEnumbyNumberTEnum(string number) { return (TEnum)Enum.Parse(typeof(TEnum), num 阅读全文
摘要:
style .trigger{ height:25px; width:100%; padding-top:7px; color:#3842b4; font-weight:bold; padding-left:5px; background:url(down.png) no-repeat center right } .active{ height:25px; width:100%; background:url(up.png) no-repeat center right } .toggle_container{} .icon_col{ background:url("collap 阅读全文
摘要:
godeclare @tbname varchar(250)declare #tb cursor for select name from sysobjects where objectproperty(id,'IsUserTable')=1open #tbfetch next from #tb into @tbnamewhile @@fetch_status=0begin exec('drop table ['+@tbname+']') fetch next from #tb into @tbnameendclose #tbdeallocate #tb 阅读全文