资源简介
1、系统采用纯HTML+Ashx开发,好处就不用多说了,终于可以摆脱控件那一大堆要命的东西了
2、不管是微信端还是PC端,前端采用现在流行的MVC框架(avalon,这个类似大名鼎鼎的angularjs)和Jquery配合开发,简直不能更酸爽了
3、界面优美
4、企业号作为一个配置项而存在,也就是说只需要经过简单的配置,即能使用我们开发完毕的企业号相关应用
模块功能 1、 人力资源(考勤,工资发放,出差请假,员工管理) 2、 CRM(客户管理,合同管理,产品管理) 3、 工作报告 4、 经费报销 5、 企业活动 6、 企业文档 7、 工作流程 8、 会议管理 9、 同事社区 10、新闻公告 11、活动报 12、任务管理 13、项目管理 14、日程管理 14、短信管理
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Configuration;
using System.IO;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
using QJY.API;
using System.Text;
namespace QjySaaSWeb
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender EventArgs e)
{
System.Timers.Timer t = new System.Timers.Timer();
t.Interval = 3 * 1000;
t.Elapsed += new System.Timers.ElapsedEventHandler(TimerNow);
t.AutoReset = true;
t.Enabled = true;
t.Start();
}
public void TimerNow(object source System.Timers.ElapsedEventArgs e)
{
string path = Environment.CurrentDirectory;
try
{
Random rd = new Random();
string strUrl = Commonhelp.GetConfig(“APITX“) + “&r=“ + rd.Next();
HttpWebResponse ResponseDataXS = Commonhelp.CreateHttpResponse(strUrl null 0 ““ null “GET“);
string Returndata = new StreamReader(ResponseDataXS.GetResponseStream() Encoding.UTF8).ReadToEnd();
}
catch (Exception ex)
{
Commonhelp.WriteLOG(ex.Message.ToString());
}
}
protected void Session_Start(object sender EventArgs e)
{
}
protected void Application_BeginRequest(object sender EventArgs e)
{
}
protected void Application_AuthenticateRequest(object sender EventArgs e)
{
}
protected void Application_Error(object sender EventArgs e)
{
}
protected void Session_End(object sender EventArgs e)
{
}
protected void Application_End(object sender EventArgs e)
{
// 在应用程序关闭时运行的代码
//解决应用池回收问题
System.Threading.Thread.Sleep(5000);
Random rd = new Random();
string strUrl = Commonhelp.GetConfig(“APITX“) + “&r=“ + rd.Next();
HttpWebResponse ResponseDataXS = Commonhelp.CreateHttpResponse(strUrl null 0 ““ null “GET“);
string Returndata = new StreamReader(ResponseDataXS.GetResponseStream() Encoding.UTF8).ReadToEnd();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-05-23 10:02 QJ_Single\
文件 2132 2017-05-13 21:56 QJ_Single\.gitignore
目录 0 2017-05-23 08:52 QJ_Single\.vs\
目录 0 2017-05-23 08:52 QJ_Single\.vs\config\
文件 82388 2017-05-13 21:56 QJ_Single\.vs\config\applicationhost.config
目录 0 2017-05-23 08:52 QJ_Single\FTWeb\
目录 0 2017-05-23 08:52 QJ_Single\FTWeb\API\
文件 340 2017-05-13 21:56 QJ_Single\FTWeb\API\HtmlHandler.cs
文件 745 2017-05-13 21:56 QJ_Single\FTWeb\API\HtmlModule.cs
文件 95 2017-05-13 21:56 QJ_Single\FTWeb\API\VIEWAPI.ashx
文件 7035 2017-05-13 21:56 QJ_Single\FTWeb\API\VIEWAPI.ashx.cs
文件 91 2017-05-13 21:56 QJ_Single\FTWeb\API\WXAPI.ashx
文件 63953 2017-05-13 21:56 QJ_Single\FTWeb\API\WXAPI.ashx.cs
文件 93 2017-05-13 21:56 QJ_Single\FTWeb\Global.asax
文件 2399 2017-05-13 21:56 QJ_Single\FTWeb\Global.asax.cs
文件 17707 2017-05-13 21:56 QJ_Single\FTWeb\login.html
文件 720 2017-05-13 21:56 QJ_Single\FTWeb\packages.config
目录 0 2017-05-23 19:26 QJ_Single\FTWeb\Properties\
文件 266 2015-03-22 11:39 QJ_Single\FTWeb\Properties\010xr_com.htm
文件 7415 2015-03-10 16:37 QJ_Single\FTWeb\Properties\010xr_com.jpg
文件 4527 2016-02-19 20:53 QJ_Single\FTWeb\Properties\126x36.png
文件 1287 2017-05-13 21:56 QJ_Single\FTWeb\Properties\AssemblyInfo.cs
文件 1084 2017-05-13 21:56 QJ_Single\FTWeb\Properties\Settings.Designer.cs
文件 196 2017-05-13 21:56 QJ_Single\FTWeb\Properties\Settings.settings
文件 102645 2017-05-13 21:56 QJ_Single\FTWeb\QjySaasWeb.csproj
文件 14003 2017-05-13 21:56 QJ_Single\FTWeb\signupV5.html
目录 0 2017-05-23 08:52 QJ_Single\FTWeb\ViewV5\
目录 0 2017-05-23 08:52 QJ_Single\FTWeb\ViewV5\AppPage\
文件 8935 2017-05-13 21:56 QJ_Single\FTWeb\ViewV5\AppPage\APPLIST.html
文件 27691 2017-05-13 21:56 QJ_Single\FTWeb\ViewV5\AppPage\APPVIEW.html
文件 13424 2017-05-13 21:56 QJ_Single\FTWeb\ViewV5\AppPage\APP_ADD_WF.html
............此处省略1835个文件信息
评论
共有 条评论