Posts

Showing posts from April, 2015

SignalR Server Monitor

Image
Hi Guys, This time I made a small web application which monitors the server usage real time using SignalR. Hope You like it. 1) Default.aspx <%@ Page Language="C#"  AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Htm5Notifications.Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title>Server Usage Dashboard</title>      <script src="../Scripts/jquery-1.6.4.js"></script>         <script src="../Scripts/jquery.signalR-2.2.0.js"></script>     <script src="http://localhost:51255/signalr/hubs/" type="text/javascript"></script>     <script src="Message.js"></script>     <link href="../Styles/bootstrap.min.css" rel="stylesheet" />     <script src="justgage.1.0.1.min.js...