考勤管理系统

所属分类:ASP/.NET编程
开发工具:ASP
文件大小:2656KB
下载次数:14
上传日期:2018-01-26 22:32:45
上 传 者lxs6703
说明:  1、分管理员、部门、员工三个功能模块, ①、管理员界面 :员工管理(增删查改)、部门管理(增删查改)、考勤设置(指定放假、工作日期,不设置默认为周1-5上班 周六周日休假). ②、部门主管界面:请假审批(增删查改、审核员工提交的请假申请)、考勤数据导入(导入Excel文件导入打卡信息) ③、员工界面:请假申请(增删查改、向主管发起请假申请)、考勤记录(查看自己每个月考勤数据) 2、调用中国天气网api,联网状态下首页支持显示当天天气 3、支持用户自己修改头像。 4、新增锁定模式,用户暂时离开可保留会话状态。 管理员默认账号:admin 密码:1 部门主管测试账号:1030 密码:1 员工测试账号:1056 密码:1 关于数据库的配置: 导入根目录下面的Attendance.bak 导入到数据库即可. 数据库连接配置:编辑根目录下面的Web.config文件,修改configuration节点下面的连接信息即可
(Administrator interface: staff management (additions and deletions to change), department management (additions and deletions to check and change), attendance settings (designated holidays, working dates, do not set the default week 1-5, work Saturday, Sunday off).)

文件列表:
Admin (0, 2016-01-09)
Admin\AddDept.aspx (2269, 2016-01-08)
Admin\AddUser.aspx (2764, 2016-01-09)
Admin\AttendanceSetting.aspx (5821, 2015-11-01)
Admin\DeptManage.aspx (7752, 2016-01-02)
Admin\EditDept.aspx (2036, 2016-01-09)
Admin\EditUser.aspx (2331, 2016-01-08)
Admin\EmployeeManage.aspx (13614, 2016-01-03)
Admin\images (0, 2016-01-09)
Admin\images\admin-1.png (20139, 2015-09-26)
Admin\images\admin-2.png (22165, 2015-09-26)
Admin\images\admin-3.png (18876, 2015-09-26)
Admin\images\admin-4.png (22906, 2015-09-26)
Admin\images\admin-5.png (20291, 2015-09-26)
Admin\images\admin-6.png (22865, 2015-09-26)
Admin\images\bg.png (84915, 2016-01-07)
Admin\images\bj.png (19473, 2015-09-27)
Admin\images\bmgl.jpg (47304, 2015-12-29)
Admin\images\close.png (1646, 2015-09-27)
Admin\images\js.jpg (80236, 2015-12-30)
Admin\images\kqsz.jpg (42418, 2015-12-29)
Admin\images\lock.png (16592, 2015-10-26)
Admin\images\my.jpg (12834, 2015-11-02)
Admin\images\research.png (18713, 2015-09-27)
Admin\images\sc.png (19594, 2015-09-27)
Admin\images\time.jpg (22793, 2016-01-02)
Admin\images\yhgl.jpg (37804, 2015-12-29)
Admin\Index.aspx (2501, 2015-10-03)
Admin\Left.aspx (4358, 2015-10-27)
Admin\Right.aspx (5737, 2016-01-08)
Admin\Top.aspx (1512, 2015-10-29)
artDialog (0, 2016-01-09)
artDialog\artDialog.js (25059, 2015-10-02)
artDialog\artDialog.source.js (54001, 2015-10-26)
artDialog\index.html (9916, 2015-09-27)
artDialog\jquery.artDialog.js (16114, 2015-09-27)
artDialog\jquery.artDialog.source.js (33957, 2015-09-27)
artDialog\license.txt (7814, 2015-09-27)
artDialog\plugins (0, 2016-01-09)
artDialog\plugins\iframeTools.js (4315, 2015-09-27)
... ...

# Highlight.js Highlight.js highlights syntax in code examples on blogs, forums and in fact on any web pages. It's very easy to use because it works automatically: finds blocks of code, detects a language, highlights it. Autodetection can be fine tuned when it fails by itself (see "Heuristics"). ## Installation and usage Downloaded package includes file "highlight.pack.js" which is a full compressed version of the library intended to use in production. All uncompressed source files are also available, feel free to look into them! The script is installed by linking to a single file and making a single initialization call: Also you can replaces TAB ('\x09') characters used for indentation in your code with some fixed number of spaces or with a `` to set them special styling: Then the script looks in your page for fragments `
...
` that are used traditionally to mark up code examples. Their content is marked up by logical pieces with defined class names. ### Custom initialization If you use different markup for code blocks you can initialize them manually with `highlightBlock(code, tabReplace)` function. It takes a DOM element containing the code to highlight and optionally a string with which to replace TAB characters. Initialization using for example jQuery might look like this: $(document).ready(function() { $('pre code').each(function(i, e) {hljs.highlightBlock(e, ' ')}); }); ### Styling Elements of code marked up with classes can be styled as desired: .comment { color: gray; } .keyword { font-weight: bold; } .python .string { color: blue; } .html .atribute .value { color: green; } Highligt.js comes with several style themes located in "styles" directory that can be used directly or as a base for your own experiments. A full list of available classes is below ("Languages"). ## Export File export.html contains a little program that shows and allows to copy and paste an HTML code generated by the highlighter for any code snippet. This can be useful in situations when one can't use the script itself on a site. ## Languages This is a full list of available classes corresponding to languages' syntactic structures. In parentheses after language names are identifiers used as class names in `` element. Python ("python"): keyword keyword built_in built-in objects (None, False, True and Ellipsis) number number string string (of any type) comment comment decorator @-decorator for functions function function header "def some_name(...):" class class header "class SomeName(...):" title name of a function or a class inside a header params everything inside parentheses in a function's or class' header Python profiler results ("profile"): number number string string builtin builtin function entry filename filename in an entry summary profiling summary header header of table of results keyword column header function function name in an entry (including parentheses) title actual name of a function in an entry (excluding parentheses) Ruby ("ruby"): keyword keyword string string subst in-string substitution (#{...}) comment comment yardoctag YARD tag function function header "def some_name(...):" class class header "class SomeName(...):" title name of a function or a class inside a header parent name of a parent class symbol symbol instancevar instance variable Perl ("perl"): keyword keyword comment comment number number string string regexp regular expression sub subroutine header (from "sub" till "{") variable variable starting with "$", "%", "@" operator operator pod plain old doc PHP ("php"): keyword keyword number number string string (of any type) comment comment phpdoc phpdoc params in comments variable variable starting with "$" preprocessor preprocessor marks: "" Scala ("scala"): keyword keyword number number string string comment comment annotaion annotation javadoc javadoc comment javadoctag @-tag in javadoc class class header title class name inside a header params everything in parentheses inside a class header inheritance keywords "extends" and "with" inside class header XML ("xml"): tag any tag from "<" till ">" comment comment pi processing instruction () cdata CDATA section attribute attribute value attribute's value HTML ("html"): keyword HTML tag tag any tag from "<" till ">" comment comment doctype declaration attribute tag's attribute with or without value value attribute's value CSS ("css"): keyword HTML tag when in selectors, CSS keyword when in rules id #some_name in selectors class .some_name in selectors at_rule @-rule till first "{" or ";" attr_selector attribute selector (square brackets in a[href^=http://]) pseudo pseudo classes and elemens (:after, ::after etc.) comment comment rules everything from "{" till "}" value property's value inside a rule, from ":" till ";" or till the end of rule block number number within a value string string within a value hexcolor hex color (#FFFFFF) within a value function CSS function within a value params everything between "(" and ")" within a function Django ("django"): keyword HTML tag in HTML, default tags and default filters in templates tag any tag from "<" till ">" comment comment doctype declaration attribute tag's attribute with or withou value value attribute's value template_tag template tag {% .. %} variable template variable {{ .. }} template_comment template comment, both {# .. #} and {% comment %} filter filter from "|" till the next filter or the end of tag argument filter argument Javascript ("javascript"): keyword keyword comment comment number number literal special literal: "true", "false" and "null" string string regexp regular expression function header of a function title name of a function inside a header params everything inside parentheses in a function's header VBScript ("vbscript"): keyword keyword number number string string comment comment built_in built-in function Lua ("lua"): keyword keyword number number string string comment comment built_in built-in operator function header of a function title name of a function inside a header params everything inside parentheses in a function's header long_brackets multiline string in [=[ .. ]=] Delphi ("delphi"): keyword keyword comment comment (of any type) number number string string function header of a function, procedure, constructor and destructor title name of a function, procedure, constructor or destructor inside a header params everything inside parentheses in a function's header class class' body from "= class" till "end;" Java ("java"): keyword keyword number number string string comment commment annotaion annotation javadoc javadoc comment class class header from "class" till "{" title class name inside a header params everything in parentheses inside a class header inheritance keywords "extends" and "implements" inside class header C++ ("cpp"): keyword keyword number number string string and character comment comment preprocessor preprocessor directive stl_container instantiation of STL containers ("vector<...>") C# ("cs"): keyword keyword number number string string comment commment xmlDocTag xmldoc tag ("///", "", "<..>") RenderMan RSL ("rsl"): keyword keyword number number string string (including @"..") comment comment preprocessor preprocessor directive shader sahder keywords shading shading keywords built_in built-in function RenderMan RIB ("rib"): keyword keyword number number string string comment comment commands command Maya Embedded Language ("mel"): keyword keyword number number string string comment comment variable variable SQL ("sql"): keyword keyword (mostly SQL'92 and SQL'99) number number string string (of any type: "..", '..', `..`) comment comment aggregate aggregate function Smalltalk ("smalltalk"): keyword keyword number number string string comment commment symbol symbol array array class name of a class char char localvars block of local variables Lisp ("lisp"): keyword keyword number number string string comment commment variable variable literal b, t and nil list non-quoted list title first symbol in a non-quoted list body remainder of the non-quoted list quoted_list quoted list, both "(quote .. )" and "'(..)" Ini ("ini"): title title of a section value value of a setting of any type string string number number keyword boolean value keyword Apache ("apache"): keyword keyword number number comment commment literal On and Off sqbracket variables in rewrites "%{..}" cbracket options in rewrites "[..]" tag begin and end of a configuration section Nginx ("nginx"): keyword keyword string string number number comment comment built_in built-in constant variable $-variable DOS ("dos"): keyword keyword flow batch control keyword stream DOS special files ("con", "prn", ...) winutils some commands (see dos.js specifically) envvar environment variables Bash ("bash"): keyword keyword string string number number comment comment literal special literal: "true" "false" variable variable shebang script interpreter header Diff ("diff"): header file header chunk chunk header within a file addition added lines deletion deleted lines change changed lines Axapta ("axapta"): keyword keyword number number string string comment commment class class header from "class" till "{" title class name inside a header params everything in parentheses inside a class header inheritance keywords "extends" and "implements" inside class header preprocessor preprocessor directive 1C ("1c"): keyword keyword number number date date string string comment commment function header of function or procudure title function name inside a header params everything in parentheses inside a function header preprocessor preprocessor directive AVR assembler ("avrasm"): keyword keyword built_in pre-defined register number number string string comment commment label label preprocessor preprocessor directive localvars substitution in .macro Parser3 ("parser3"): keyword keyword number number comment commment variable variable starting with "$" preprocessor preprocessor directive title user-defined name starting with "@" TeX ("tex"): comment comment number number command command parameter parameter formula formula special special symbol ## Heuristics Autodetection of a code's language is done with a simple heuristics: the program tries to highlight a fragment with all available languages and counts all syntactic structures that it finds along the way. The language with greatest count wins. This means that in short fragments the probability of an error is high (and it really happens sometimes). In this cases you can set the fragment's language explicitly by assigning a class to the `` element:
...
You can use class names recommended in HTML5: "language-html", "language-php". Classes also can be assigned to the `
` element.

To disable highlighting of a fragment altogether use "no-highlight" class:

    
...
## Contacts Version: 5.11 URL: http://softwaremaniacs.org/soft/highlight/en/ Author: Ivan Sagalaev (Maniac@SoftwareManiacs.Org) For the license terms see LICENSE files. For the list of contributors see AUTHORS.en.txt file.

近期下载者

相关文件


收藏者