-
大小: 1.4MB文件類型: .rar金幣: 2下載: 0 次發(fā)布日期: 2023-08-09
- 語言: C#
- 標(biāo)簽: 在線報(bào)修??管理系統(tǒng)??
資源簡介
在線報(bào)修管理系統(tǒng)
系統(tǒng)簡介:
1、本系統(tǒng)適合學(xué)校、小區(qū)、企業(yè)內(nèi)部使用,可利用單位局域網(wǎng)通過網(wǎng)上進(jìn)行設(shè)備、水電等故障報(bào)修,減輕相關(guān)工作人員的工作量,加快報(bào)修的流程和效率。
2、本系統(tǒng)采用ASP.Net 2.0技術(shù)架構(gòu),使用了微軟最新的ASP.NET 2.0 AJAX技術(shù)。
3、后臺(tái)數(shù)據(jù)庫可采用SQL Server 2000/2005或免費(fèi)的SQL Server 2005 Express,數(shù)據(jù)查詢使用存儲(chǔ)過程,執(zhí)行效率高。
4、本系統(tǒng)可免費(fèi)使用,但請(qǐng)保留版權(quán)信息。
系統(tǒng)要求:
1、IIS + Microsoft .NET Framework 2.0(ASP.Net 2.0)
2、SQL Server 2000/2005數(shù)據(jù)庫
安裝過程:
1、安裝系統(tǒng)數(shù)據(jù)庫,SQL代碼在SQL.sql文件里,在SQL SERVER里執(zhí)行即可。
2、修改Web.config,找到以下代碼:
更改其中的數(shù)據(jù)庫鏈接參數(shù)。
3、通告證號(hào)碼默認(rèn)為admin,可在系統(tǒng)管理后臺(tái)進(jìn)行修改。
4、系統(tǒng)管理默認(rèn)管理用戶和密碼為:admin,登陸后可進(jìn)行修改。
5、系統(tǒng)管理登陸后應(yīng)首先進(jìn)行故障分類管理,如校園網(wǎng)絡(luò)故障、水電線路故障等。
6、其他安裝使用問題可聯(lián)系翠鳥(zjliuquan@21cn.com)解決。

代碼片段和文件信息
#!/usr/bin/env?python
“““
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?==
Connector?for?Python.
Tested?With:
Standard:
Python?2.3.3
Zope:
Zope?Version:?(Zope?2.8.1-final?python?2.3.5?linux2)
Python?Version:?2.3.5?(#4?Mar?10?2005?01:40:25)
[GCC?3.3.3?20040412?(Red?Hat?Linux?3.3.3-7)]
System?Platform:?linux2
“““
“““
Author?Notes?(04?December?2005):
This?module?has?gone?through?quite?a?few?phases?of?change.??Obviously
I?am?only?supporting?that?part?of?the?code?that?I?use.??Initially
I?had?the?upload?directory?as?a?part?of?zope?(ie.?uploading?files
directly?into?Zope)?before?realising?that?there?were?too?many
complex?intricacies?within?Zope?to?deal?with.??Zope?is?one?ugly?piece
of?code.??So?I?decided?to?complement?Zope?by?an?Apache?server?(which
I?had?running?anyway?and?doing?nothing).??So?I?mapped?all?uploads
from?an?arbitrary?server?directory?to?an?arbitrary?web?directory.
All?the?FCKeditor?uploading?occurred?this?way?and?I?didn‘t?have?to
stuff?around?with?fiddling?with?Zope?objects?and?the?like?(which?are
terribly?complex?and?something?you?don‘t?want?to?do?-?trust?me).
Maybe?a?Zope?expert?can?touch?up?the?Zope?components.??In?the?end
I?had?FCKeditor?loaded?in?Zope?(probably?a?bad?idea?as?well)?and
I?replaced?the?connector.py?with?an?alias?to?a?server?module.
Right?now?all?Zope?components?will?simple?remain?as?is?because
I‘ve?had?enough?of?Zope.
See?notes?right?at?the?end?of?this?file?for?how?I?aliased?out?of?Zope.
Anyway?most?of?you?probably?wont?use?Zope?so?things?are?pretty
simple?in?that?regard.
Typically?SERVER_DIR?is?the?root?of?WEB_DIR?(not?necessarily).
Most?definitely?SERVER_USERFILES_DIR?points?to?WEB_USERFILES_DIR.
“““
import?cgi
import?re
import?os
import?string
“““
escape
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.
“““
def?escape(text?replace=string.replace):
????text?=?replace(text?‘&‘?‘&‘)?#?must?be?done?1st
????text?=?replace(text?‘<‘?‘<‘)
????text?=?replace(text?‘>‘?‘>‘)
????text?=?replace(text?‘“‘?‘"‘)
????return?text
“““
getFCKeditorConnector
Creates?a?new?instance?of?an?FCKeditorConnector?and?runs?it
“““
def?getFCKeditorConnector(context=None):
#?Called?from?Zope.??Passes?the?context?through
connector?=?FCKeditorC
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件????????894??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Bottom.aspx
?????文件???????8263??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Case.aspx
?????文件???????5923??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Class.aspx
?????文件???????5911??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Config.aspx
?????文件???????2947??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Develop.aspx
?????文件??????11061??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Fixer.aspx
?????文件???????2169??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Gonggaoadd.aspx
?????文件???????6693??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Gonggaoedit.aspx
?????文件???????4391??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Login.aspx
?????文件???????1606??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Loginout.aspx
?????文件???????1935??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Main.aspx
?????文件???????6293??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Menu.aspx
?????文件???????2890??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Message_Add.aspx
?????文件???????4312??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Message_Edit.aspx
?????文件???????8855??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Report.aspx
?????文件???????4382??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_ReportEdit.aspx
?????文件????????854??2007-04-03?21:53??baoxiu\baoxiu\Admin\Admin_Top.aspx
?????文件?????????96??2007-04-03?21:53??baoxiu\baoxiu\Admin\Default.aspx
?????文件????????164??2007-04-03?21:53??baoxiu\baoxiu\bin\App_Code.compiled
?????文件???????7168??2007-04-03?21:53??baoxiu\baoxiu\bin\App_Code.dll
?????文件???????3584??2007-03-26?01:07??baoxiu\baoxiu\bin\App_Licenses.dll
?????文件???????9728??2007-04-03?21:53??baoxiu\baoxiu\bin\App_Web_13uzs255.dll
?????文件??????32768??2007-04-03?21:53??baoxiu\baoxiu\bin\App_Web_2de4qqid.dll
?????文件??????24576??2007-04-03?21:53??baoxiu\baoxiu\bin\App_Web_tty86oeo.dll
?????文件???????7168??2007-04-03?21:53??baoxiu\baoxiu\bin\App_Web__-eylntw.dll
?????文件??????61440??2007-01-12?00:56??baoxiu\baoxiu\bin\AspNetPager.dll
?????文件????1167360??2007-02-02?14:41??baoxiu\baoxiu\bin\C1.Web.Command.2.dll
?????文件?????119355??2007-02-02?14:41??baoxiu\baoxiu\bin\C1.Web.Command.2.xm
?????文件??????36864??2005-10-07?17:20??baoxiu\baoxiu\bin\FredCK.FCKeditorV2.dll
?????文件?????701816??2007-01-20?17:56??baoxiu\baoxiu\bin\System.Web.Extensions.dll
............此處省略514個(gè)文件信息
評(píng)論
共有 條評(píng)論