摘要:
软件简介Eschool校园网平台是专门为中、小学、大中专院校而精心设计的优秀校园网平台软件,完全基于Web开发,采用大型数据库系统Microsoft SQL Server 2000,能够全面满足各类学校的校园网建设需要。功能模块:(以下栏目可自行定义,不需要的可删除,也可添加)1、交流频道:消息、新闻、公告、通知、校历、论坛、文章、邮件、留言薄、聊天室。2、校园频道:学校简介、招生信息、校园风光、办学特色、学校荣誉、名师档案、校史长廊、心理咨询、休闲驿站等。3、同步课堂:疑难解答、作文点评、专题讲座、精选题库等。4、家长频道:家长登记、家长查询等。5、老师频道:优秀教案、论文赏析、精选课件、家
阅读全文
posted @ 2013-01-16 14:03
shiningrise
阅读(674)
推荐(0)
摘要:
http://tonyqus.sinaapp.com/tutorialhttp://npoi.codeplex.com/
阅读全文
posted @ 2013-01-15 11:58
shiningrise
阅读(235)
推荐(0)
摘要:
www.gitcafe.comwww.gitcd.comwww.teamhost.rog
阅读全文
posted @ 2013-01-14 21:37
shiningrise
阅读(184)
推荐(0)
摘要:
@echo offrmdir /s /Q downloadrmdir /s /Q iconrmdir /s /Q Logsrmdir /s /Q resrmdir /s /Q Stylesrmdir /s /Q Tempdel Web.configdel release_history.txtdel release_history_en.txtdel prePublsh.batecho okcmd
阅读全文
posted @ 2013-01-14 21:27
shiningrise
阅读(268)
推荐(0)
摘要:
http://help.github.com/fork-a-repo/ 概要: 克隆别人的代码库到自己的项目中,可以作为子模块的形式使用,或二次开发操作流程:在开源项目中点击fork按钮,稍等一会儿,该项目便会拷贝一份到你的respositories中,克隆一份代码到本地:git clone git@github.com:username/Spoon-Knife.git配置:(项目克隆完成后,默认远程的别名为origin,此为我们自己项目中的版本,并非原始作者的代码库)创建原始代码库的别名,方便跟踪代码 git remote add upstream git://github.com/octo
阅读全文
posted @ 2013-01-14 19:50
shiningrise
阅读(11778)
推荐(1)
摘要:
/* #region 人事管理 menu = SysMenu.FindOne(p => p.Name == "人事管理"); if (menu == null) { menu = new SysMenu(); menu.Name = "人事管理"; menu.ParentId = 0; menu.NavigateUrl = ""; menu.IsTreeLeaf = true; menu.Save(); } menu1 = SysMenu.FindOne(p => p.Name == "考勤管理");
阅读全文
posted @ 2013-01-13 19:54
shiningrise
阅读(240)
推荐(0)
摘要:
#ignore thumbnails created by windowsThumbs.db#Ignore files build by Visual Studio*.obj*.pdb*.user*.aps*.pch*.vspscc*_i.c*_p.c*.ncb*.suo*.tlb*.tlh*.bak*.cache*.ilk*.log[Bb]in[Dd]ebug*/*.lib*.sbrobj/[Rr]elease*/_ReSharper*/[Tt]est[Rr]esult*publish/*.Publish.xmlpackages/*.nupkgnugetpush.batApp_Data/*.
阅读全文
posted @ 2013-01-12 12:57
shiningrise
阅读(190)
推荐(0)
摘要:
http://www.wojilu.com/Forum1/Topic/2261最后,提供我最近写得 git 系列教程共10篇,供参考——1)git电子书和其他资源http://www.wojilu.com/Forum1/Topic/22242)git工具安装:http://www.wojilu.com/Forum1/Topic/22273)github的登录认证机制:http://www.wojilu.com/Forum1/Topic/22354)(图解)配合vs使用git命令行入门: http://www.wojilu.com/Forum1/Topic/23755)git基本命令:http:
阅读全文
posted @ 2013-01-11 22:28
shiningrise
阅读(224)
推荐(0)
摘要:
新浪http://code.google.com/p/oauth-dot-net/http://www.cnblogs.com/mainz/archive/2010/12/01/1893718.htmlhttp://www.cnblogs.com/prolifes/articles/2263033.htmlhttp://www.cnblogs.com/shiningrise/archive/2012/01/01/2309725.htmlQQ:http://qqconnect.codeplex.com/https://github.com/shiningrise/dotnetopenid
阅读全文
posted @ 2013-01-11 21:39
shiningrise
阅读(148)
推荐(0)
摘要:
/**************************************************************************** * 功能说明: * 1、使用 HttpModel与现有基于共享登录信息( Cookie )的网站进行集成 * 2、用户自动登录,自动注册,,延时注册, * 3、同步退出 * * 使用方法: * 见示例web.config * * 设计编码:shiningrise@gmail.com * **********************************************************************...
阅读全文
posted @ 2013-01-11 21:38
shiningrise
阅读(387)
推荐(0)
摘要:
git update-index --assume-unchanged nugetpush.batgit update-index --assume-unchanged Wxy.WebApp/Web.config gitignore只能忽略那些原来没有被track的文件,所以修改.gitignore是无效的。正确的做法是在每个clone下来的仓库中手动设置不要检查特定文件的更改情况。%git update-index --assume-unchanged/path/to/file缺点就是每个新的仓库都必须手动设置一次。幸运的是,这样的设置每个仓库只要进行一次就够了。http://blog.si
阅读全文
posted @ 2013-01-11 20:51
shiningrise
阅读(437)
推荐(0)
摘要:
@echo offset url=nuget服务器set pwd=发布密码echo "start Wxy.DbEntryMembership"cd Wxy.DbEntryMembershipdel *.nupkg..\NuGet.exe pack..\NuGet.exe push *.nupkg -s %url% %pwd%cd ..\echo "start Wxy.Common"cd Wxy.Commondel *.nupkg..\NuGet.exe pack..\NuGet.exe push *.nupkg -s %url% %pwd%cd ..\e
阅读全文
posted @ 2013-01-11 20:09
shiningrise
阅读(422)
推荐(0)
摘要:
下边是我封装的一个类的构造函数,根据isEmbed来判断是使用的哪种数据库版本:public FireBirdDbHelper(bool isEmbed){if(isEmbed) _connectionString="Database=roy;User=SYSDBA;Password=masterkey;server type=1";else_connectionString= @"Database=D:\firebird\Firebird-1.5.2.4731_win32\examples\employee.fdb;User=SYSDBA;Password=ma
阅读全文
posted @ 2013-01-11 13:21
shiningrise
阅读(344)
推荐(0)
摘要:
项目文件中<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>改成<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>就行了
阅读全文
posted @ 2013-01-09 22:45
shiningrise
阅读(220)
推荐(0)
摘要:
http://code.google.com/p/kiwing/http://www.toptensoftware.com/petapoco/PetaPoco is a tiny, fast, single-file micro-ORM for .NET and Mono.Like Massive it's a single file that you easily add to any projectUnlike Massive it works with strongly typed POCO'sLike Massive, it now also supports dyna
阅读全文
posted @ 2013-01-09 11:17
shiningrise
阅读(258)
推荐(0)
摘要:
resolverresolver 192.168.1.251; #内部DNS服务器server {listen111.222.333.444:80;server_name*.qwemgh.com;location / {proxy_pass http://$host;}}发现个问题,resolver不能指定多个DNS服务器,resolver 192.168.1.251 192.168.1.250;resolver 192.168.1.251,192.168.1.250;resolver 192.168.1.251;resolver 192.168.1.250; #以上方式均会报错。这样就有个单
阅读全文
posted @ 2013-01-08 22:14
shiningrise
阅读(756)
推荐(0)
摘要:
# You may add here your# server {# ...# }# statements for each of your virtual hosts to this file### You should look at the following URL's in order to grasp a solid understanding# of Nginx configuration files in order to fully unleash the power of Nginx.# http://wiki.nginx.org/Pitfalls# http:..
阅读全文
posted @ 2013-01-08 20:42
shiningrise
阅读(252)
推荐(0)
摘要:
用IE6.0打开FTP时,文件以文件夹的形式显现,但IE7.0或IE8.0则不然,它是以列表的形式显示的,不直观。如果要修改成打开FTP时,文件以文件夹的形式显现,可以通过修改注册表来实现,具体如下:Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_INTERNET_SHELL_FOLDERS]"iexplore.exe"=dword:00000001将以上蓝色字体部分复制到文本文件中
阅读全文
posted @ 2013-01-07 13:30
shiningrise
阅读(257)
推荐(0)
摘要:
SQL Server中文版的默认的日期字段datetime格式是yyyy-mm-dd Thh:mm:ss.mmm例如:select getdate()2004-09-12 11:06:08.177整理了一下SQL Server里面可能经常会用到的日期格式转换方法:举例如下:select CONVERT(varchar, getdate(), 120 )2004-09-12 11:06:08Select CONVERT(varchar(100), GETDATE(), 0): 05 16 2006 10:57AMSelect CONVERT(varchar(100), GETDATE(), 1)
阅读全文
posted @ 2013-01-05 21:53
shiningrise
阅读(332)
推荐(0)
摘要:
7. 基于DotNet4.0的项目,一定要注意!为Web.config中<system.web>的<page>标签添加controlRenderingCompatibilityVersion和clientIDMode两个属性。 <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"> <controls> <add assembly="FineUI" namespace="FineUI
阅读全文
posted @ 2013-01-03 16:18
shiningrise
阅读(403)
推荐(0)
摘要:
PowerCommands for Visual Studio 2010http://visualstudiogallery.msdn.microsoft.com/e5f41ad9-4edc-4912-bca3-91147db95b99/
阅读全文
posted @ 2012-12-30 16:05
shiningrise
阅读(221)
推荐(0)
摘要:
http://wiki.debian.org/Bind9
阅读全文
posted @ 2012-12-29 22:30
shiningrise
阅读(208)
推荐(0)
摘要:
Windows Server 2008官方简体中文正式版下载+序列号 Windows Server 2008是微软下一个服务器操作系统的名称,将会是一套相等于Windows Vista(代号为Longhorn)的服务器系统,两者很可能将会拥有很多相同功能。 Windows Server 2008通过加强操作系统和保护网络环境提高了安全性。它具有更强的控制能力、更大的灵活性、自修复NTFS文件系统、快速关机服务等特点。 一、版本信息文件: zh-Hans_windows_server_2008_datacenter_enterprise_standard_x86_dvd_x14-2674...
阅读全文
posted @ 2012-12-29 08:25
shiningrise
阅读(1214)
推荐(0)
摘要:
事情是这样的,我一个txt文件,我想把里面的所有3.6改成6*3请问有什么方法吗?谢谢我来帮他解答精彩回答 2008-12-24 00:51@echo offsetlocal enabledelayedexpansionset file=set /p file= 请输入要操作的文件名称(包括扩展名):set "file=%file:"=%"for %%i in ("%file%") do set file=%%~fiset replaced=set /p replaced= 请输入即将被替换的内容:set all=set /p all= 请输入
阅读全文
posted @ 2012-12-28 21:45
shiningrise
阅读(5757)
推荐(0)
摘要:
POWERSHELL脚本执行权限2009-02-04 16:55:02|分类:powershell|字号订阅· Restricted——默认的设置, 不允许任何script运行· AllSigned——只能运行经过数字证书签名的script· RemoteSigned——运行本地的script不需要数字签名,但是运行从网络上下载的script就必须要有数字签名· Unrestricted——允许所有的script运行 解决办法你可以使用"Set-ExecutionPolicy"cmdlet来改变的你PowerShell环境。例如,你可
阅读全文
posted @ 2012-12-28 19:47
shiningrise
阅读(336)
推荐(0)
摘要:
mysql不能自动安装在新安装的ubuntu系统上面bunlde的时候遇到了这样一个问题:[ruby] view plaincopyInstallingmysql2(0.3.11)withnativeextensionsGem::Installer::ExtensionBuildError:ERROR:Failedtobuildgemnativeextension./home/ailen/.rvm/rubies/ruby-1.9.3-p327/bin/rubyextconf.rbcheckingforrb_thread_blocking_region()...yescheckingforrb_
阅读全文
posted @ 2012-12-26 22:49
shiningrise
阅读(789)
推荐(0)
摘要:
http://www.sjdw008.com/re.asp不知道真假
阅读全文
posted @ 2012-12-25 10:33
shiningrise
阅读(1669)
推荐(0)
摘要:
帮我解决问题的原文http://bbs.vmsky.com/thread-37020-1-1.html在快照的情况下,使用vmkfstools -X 160G A8.vmdk,在终端界面没有报错一启动虚拟机出现The parent virtual disk has been modified since the child was created无法打开磁盘“/vmfs/volumes/4c3e9562-84629be3-8e98-a4badb3f316f/A8/A8-000002.vmdk”或其所依赖的快照磁盘之一。 vi A8-000002.vmdk# Disk DescriptorFi.
阅读全文
posted @ 2012-12-24 15:53
shiningrise
阅读(12420)
推荐(0)
摘要:
免费但不开源,分布式,不支持linux服务器http://ifmw.baifeng.org/zh/
阅读全文
posted @ 2012-12-22 13:53
shiningrise
阅读(228)
推荐(0)
摘要:
国内常用NTP服务器地址及IP2011-09-07 15:06:08210.72.145.44 (国家授时中心服务器IP地址)
阅读全文
posted @ 2012-12-21 15:43
shiningrise
阅读(823)
推荐(0)
摘要:
最后发现,原来是虚拟网卡原因,,要选那个最好的网卡,,最不能选“可变“(会只跑100M网速)
阅读全文
posted @ 2012-12-21 00:46
shiningrise
阅读(288)
推荐(0)
摘要:
http://blog.csdn.net/lastsweetop/article/details/6400328
阅读全文
posted @ 2012-12-20 21:34
shiningrise
阅读(183)
推荐(0)
摘要:
http://www.linuxidc.com/Linux/2012-10/72077.htm
阅读全文
posted @ 2012-12-20 20:44
shiningrise
阅读(180)
推荐(0)
摘要:
http://www.lesscss.net/thinkcss
阅读全文
posted @ 2012-12-20 14:46
shiningrise
阅读(111)
推荐(0)
摘要:
http://www.dtcms.net
阅读全文
posted @ 2012-12-20 13:58
shiningrise
阅读(187)
推荐(0)
摘要:
引入相应语言js文件后修改主页面的js代码,比如是中文则如下:<script type="text/javascript" charset="utf-8"> $().ready(function() { var elf = $('#elfinder').elfinder({ url : 'php/connector.php', // connector URL (REQUIRED) lang: 'zh_CN' // language (OPTIONAL) }).elfinder('ins
阅读全文
posted @ 2012-12-20 00:11
shiningrise
阅读(3806)
推荐(0)
摘要:
LinPHAhttp://www.55ln.com/566.html
阅读全文
posted @ 2012-12-19 12:50
shiningrise
阅读(224)
推荐(0)
摘要:
LinPHAhttp://www.oschina.net/p/piwigo/similar_projects?p=5http://down.cnzz.cn/List/481.aspxhttp://cn.piwigo.org/
阅读全文
posted @ 2012-12-17 16:08
shiningrise
阅读(158)
推荐(0)
摘要:
http://help.aliyun.com/manual?spm=5176.383518.0.105.gTitYF&helpId=273 适用系统:Redhat 1、启动VSFTP服务器 A. 登录Linux主机后,运行命令:”service vsftpd start” B. 要让FTP每次开机自动启动,运行命令: “chkconfig --level 35 vsftpd on” 2、设置FTP权限 A. 编辑VSFTP配置文件,运行命令:”vi /etc/vsftpd/vsftpd.conf “ B. 将配置文件中”anonymous_enable=YES “改为“anony...
阅读全文
posted @ 2012-12-14 18:19
shiningrise
阅读(209)
推荐(0)
摘要:
爱考在线考试系统V1.2.1正式版安装.rar
阅读全文
posted @ 2012-12-14 16:01
shiningrise
阅读(205)
推荐(0)