• 大小: 21.28MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-13
  • 语言: C#
  • 标签: MVC  

资源简介

MVC酒店管理系统时基于C#开发的系统,可以作为开发参考.zip

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Common
{
    /// 
    /// 生成 Ajax 响应消息 字符串
    /// 数据格式:{“statu“:“err““msg“:“出错啦~~““data“:[{}{}]“nextUrl“:“Login.aspx“}
    /// 

    public static class AjaxMsgHelper
    {
        #region 1.0 生成 Ajax消息 字符串 +static string AjaxMsg
        /// 
        /// 生成 Ajax消息 字符串
        /// 

        /// 
        /// 
        /// 
        public static void AjaxMsg(string statu string msg)
        {
            AjaxMsgHelper.AjaxMsg(statu msg “null“ “null“);
        }
        /// 
        /// 生成 Ajax消息 字符串
        /// 

        /// 
        /// 
        /// 
        /// 
        public static void AjaxMsg(string statu string msg string data)
        {
            AjaxMsgHelper.AjaxMsg(statu msg data “null“);
        }
        /// 
        /// 生成 Ajax消息 字符串
        /// 

        /// 
        /// 
        /// 
        /// 
        /// 
        public static void AjaxMsg(string statu string msg string data string nextUrl)
        {
            //{“statu“:“err““msg“:“出错啦~~““data“:[{}{}]“nextUrl“:“Login.aspx“}
            string strMsg = “{\“statu\“:\““ + statu + “\“\“msg\“:\““ + msg.Replace(‘“‘ ‘ ‘).Replace(‘\‘‘ ‘ ‘).Replace(“\r\n“ ““) + “\“\“data\“:“ + (data == null ? “null“ : data) + “\“nextUrl\“:“ + (nextUrl == null ? “null“ : “\““ + nextUrl + “\““) + “}“;
            //直接输出 数据 到 浏览器
            System.Web.HttpContext.Current.Response.Write(strMsg);
        } 
        #endregion
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-12-03 17:55  MVC酒店管理系统\
     目录           0  2013-11-16 13:37  MVC酒店管理系统\Common\
     文件        2069  2013-05-07 07:59  MVC酒店管理系统\Common\AjaxMsgHelper.cs
     文件        3493  2013-11-16 13:46  MVC酒店管理系统\Common\Common.csproj
     文件         294  2013-11-16 13:19  MVC酒店管理系统\Common\DataGridMoldel.cs
     文件        1039  2013-05-05 18:10  MVC酒店管理系统\Common\DataHelper.cs
     文件        6351  2013-11-08 10:23  MVC酒店管理系统\Common\FileHelper.cs
     文件         924  2013-10-22 16:14  MVC酒店管理系统\Common\ModelTools.cs
     文件        4054  2013-05-10 17:01  MVC酒店管理系统\Common\PageHelper.cs
     文件         703  2013-05-05 15:24  MVC酒店管理系统\Common\PagedAjaxData.cs
     目录           0  2013-10-07 11:03  MVC酒店管理系统\Common\Properties\
     文件        1332  2013-05-04 17:37  MVC酒店管理系统\Common\Properties\AssemblyInfo.cs
     目录           0  2013-12-03 17:57  MVC酒店管理系统\Common\Service References\
     文件         619  2013-05-04 17:39  MVC酒店管理系统\Common\ValidateHelper.cs
     目录           0  2013-10-07 11:03  MVC酒店管理系统\Common\bin\
     目录           0  2013-11-26 22:44  MVC酒店管理系统\Common\bin\Debug\
     文件       10240  2013-11-29 21:55  MVC酒店管理系统\Common\bin\Debug\Common.dll
     文件       30208  2013-11-29 21:55  MVC酒店管理系统\Common\bin\Debug\Common.pdb
     文件     1116760  2013-10-06 19:48  MVC酒店管理系统\Common\bin\Debug\Entityframework.dll
     文件     1138045  2013-10-06 19:48  MVC酒店管理系统\Common\bin\Debug\Entityframework.xml
     目录           0  2013-11-26 22:44  MVC酒店管理系统\Common\bin\Debug\zh-Hans\
     文件       71256  2013-10-06 19:48  MVC酒店管理系统\Common\bin\Debug\zh-Hans\Entityframework.resources.dll
     目录           0  2013-12-03 17:57  MVC酒店管理系统\Common\bin\Release\
     目录           0  2013-10-07 11:03  MVC酒店管理系统\Common\obj\
     目录           0  2013-11-29 21:55  MVC酒店管理系统\Common\obj\Debug\
     文件        3724  2013-11-29 21:55  MVC酒店管理系统\Common\obj\Debug\Common.csproj.FileListAbsolute.txt
     文件       25015  2013-11-29 21:55  MVC酒店管理系统\Common\obj\Debug\Common.csprojResolveAssemblyReference.cache
     文件       10240  2013-11-29 21:55  MVC酒店管理系统\Common\obj\Debug\Common.dll
     文件       30208  2013-11-29 21:55  MVC酒店管理系统\Common\obj\Debug\Common.pdb
     文件        7383  2013-11-16 13:37  MVC酒店管理系统\Common\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     目录           0  2013-12-03 17:57  MVC酒店管理系统\Common\obj\Debug\TempPE\
............此处省略1009个文件信息

评论

共有 条评论