务工人员管理系统[劳务公司适用]


此系统适合劳务公司,不过是个样本系统。WEB式系统,全球操控。有需要的可以到论坛发布修改部分。我们免费为你制作。
资源截图
代码片段和文件信息
“““
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 integration file for Python.
“““

import cgi
import os
import string

def escape(text replace=string.replace):
    “““Converts the special characters ‘<‘ ‘>‘ and ‘&‘.

    RFC 1866 specifies that these characters be represented
    in HTML as < > and & respectively. In Python
    1.5 we use the new string.replace() function for speed.
    “““
    text = replace(text ‘&‘ ‘&‘) # must be done 1st
    text = replace(text ‘<‘ ‘<‘)
    text = replace(text ‘>‘ ‘>‘)
    text = replace(text ‘“‘ ‘"‘)
    text = replace(text “‘“ ‘‘‘)
    return text

# The FCKeditor class
class FCKeditor(object):
def __init__(self instanceName):
self.InstanceName = instanceName
self.basePath = ‘/fckeditor/‘
self.Width = ‘100%‘
self.Height = ‘200‘
self.ToolbarSet = ‘Default‘
self.Value = ‘‘;

self.Config = {}

def Create(self):
return self.CreateHtml()

def CreateHtml(self):
HtmlValue = escape(self.Value)
Html = “


if (self.IsCompatible()):
File = “fckeditor.html“
link = “%seditor/%s?InstanceName=%s“ % (
self.basePath
File
self.InstanceName

if (self.ToolbarSet is not None):
link += “&ToolBar=%s“ % self.ToolbarSet

# Render the linked hidden field
Html += “yle=“display:none“ />“ % (
self.InstanceName
self.InstanceName
HtmlValue


# Render the configurations hidden field
Html += “yle=“display:none“ />“ % (
self.InstanceName
self.GetConfigFieldString()


# Render the editor iframe
Html += “rame id=“%s\__frame“ src=“%s“ width=“%s“ height=“%s“ frameborder=“0“ scrolling=“no“>rame>“ % (
self.InstanceName
link
self.Width
self.Height

else:
if (self.Width.find(“%%“) < 0):
WidthCSS = “%spx“ % self.Width
else:
WidthCSS = self.Width
if (self.Height.find(“%%“) < 0):
HeightCSS = “%spx“ % self.Height
else:
HeightCSS = self.Height

Html += “yle=“width: %s; height: %s;“ wrap=“virtual“>%s“ % (
self.InstanceName
WidthCSS
HeightCSS
HtmlValue

Html += “

return Html

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      20517  2007-12-09 11:19  2007useinfo.asp

     文件      40684  2007-12-09 11:19  2007uselist.asp

     文件      23750  2007-12-09 11:19  2007useadd.asp

     文件      25030  2007-12-09 11:19  2007useview.asp

     文件      23250  2007-12-09 11:19  2007useedit.asp

     文件      19632  2007-12-09 11:19  2007usedelete.asp

     文件       5954  2007-11-29 11:14  2007project3.css

     文件       5178  2007-12-09 11:19  2007ewcfg60.asp

     文件       2697  2007-12-09 11:19  2007header.asp

     文件        643  2007-12-09 11:19  2007ewmenu.asp

     文件        817  2007-12-09 11:19  2007footer.asp

     文件      84782  2007-12-09 11:19  2007aspfn60.asp

     文件        216  2007-12-09 11:19  2007userfn60.asp

     文件         26  2007-12-09 11:19  2007userfn60.js

     文件       2203  2007-12-09 11:19  2007ewbv60.asp

     文件       3767  2007-12-09 11:19  2007ewlookup60.asp

     文件       6484  2007-12-09 11:19  2007ewaddopt60.asp

     文件       7272  2007-12-09 11:19  2007login.asp

     文件       2818  2007-12-09 11:19  2007logout.asp

     文件       1963  2007-12-09 11:19  2007default.asp

     文件        221  2002-11-19 19:38  2007imagesew_calendar.gif

     文件        339  2004-09-24 11:35  2007imagesfirst.gif

     文件        172  2004-09-24 11:41  2007imagesfirstdisab.gif

     文件        340  2004-09-24 11:35  2007imageslast.gif

     文件        175  2004-09-24 11:42  2007imageslastdisab.gif

     文件        207  2004-09-24 11:36  2007images
ext.gif

     文件        152  2004-09-24 11:41  2007images
extdisab.gif

     文件        200  2004-09-24 11:35  2007imagesprev.gif

     文件        146  2004-09-24 11:41  2007imagesprevdisab.gif

     文件        842  2004-09-10 12:14  2007imagessortdown.gif

............此处省略504个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)