嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
使用SignalR实现Web聊天室功能
.
├── C#
│ ├── SignalRChatRoom
│ │ ├── App_Data
│ │ ├── App_Start
│ │ │ └── RouteConfig.cs
│ │ ├── ChatContext.cs
│ │ ├── Controllers
│ │ │ └── HomeController.cs
│ │ ├── Global.asax
│ │ ├── Global.asax.cs
│ │ ├── Hubs
│ │ │ └── GroupsHub.cs
│ │ ├── Models
│ │ │ ├── ChatRoom.cs
│ │ │ ├── Connection.cs
│ │ │ └── User.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Scripts
│ │ │ ├── jquery-2.2.2.intellisense.js
│ │ │ ├── jquery-2.2.2.js
│ │ │ ├── jquery-2.2.2.min.js
│ │ │ ├── jquery-2.2.2.min.map
│ │ │ ├── jquery.signalR-2.2.0.js
│ │ │ ├── jquery.signalR-2.2.0.min.js
│ │ │ └── layer
│ │ │ ├── extend
│ │ │ │ ├── layer.ext.dev.js
│ │ │ │ └── layer.ext.js
│ │ │ ├── layer.min.js
│ │ │ └── skin
│ │ │ ├── default
│ │ │ │ ├── icon_ext.png
│ │ │ │ ├── textbg.png
│ │ │ │ ├── xubox_ico0.png
│ │ │ │ ├── xubox_loading0.gif
│ │ │ │ ├── xubox_loading1.gif
│ │ │ │ ├── xubox_loading2.gif
│ │ │ │ ├── xubox_loading3.gif
│ │ │ │ └── xubox_title0.png
│ │ │ ├── layer.css
│ │ │ └── layer.ext.css
│ │ ├── Serialization
│ │ │ └── Json
│ │ │ └── JsonHelper.cs
│ │ ├── SignalRChatRoom.csproj
│ │ ├── SignalRChatRoom.csproj.user
│ │ ├── Startup.cs
│ │ ├── Views
│ │ │ ├── Home
│ │ │ │ └── Index.cshtml
│ │ │ └── web.config
│ │ ├── Web.Debug.config
│ │ ├── Web.Release.config
│ │ ├── Web.config
│ │ └── packages.config
│ ├── SignalRChatRoom.sln
│ └── packages
│ └── repositories.config
├── description
│ ├── Brand.css
│ ├── Galleries.css
│ └── Layout.css
├── description.html
├── license.rtf
└── 好例子网_使用SignalR实现Web聊天室功能.zip
19 directories, 47 files