Skip to content

Instantly share code, notes, and snippets.

@aboodysa
aboodysa / ChatHub2.cs
Created April 1, 2013 23:06
chat hub
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Web;
using Microsoft.AspNet.SignalR;
using Microsoft.AspNet.SignalR.Hubs;
using SimpleChat.Models;
using System.Collections.Concurrent;
@aboodysa
aboodysa / Chat.cshtml
Created April 1, 2013 23:06
chatpage
@model SimpleChat.Models.LoginModel
@{
ViewBag.Title = "Chat";
}
<head>
<title>Simple Chat</title>
<link href="~/Content/bootstrap.css" rel="stylesheet" />