基本信息
源码名称:websocket 网页通讯(实时消息推送)SignalR例子源码
源码大小:16.14M
文件格式:.rar
开发语言:C#
更新时间:2017-12-18
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 2 元 
   源码介绍


<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
	<meta charset="utf-8" />
    <script src="Scripts/jquery-1.10.2.min.js"></script>
    <script src="Scripts/jquery.signalR-2.1.2.min.js"></script>
    <script src="signalr/hubs"></script>
    <script type='text/javascript'>
		$(function () {
			// Declare a proxy to reference the hub.
		    var chat = $.connection.viewDataHub;
		    // Create a function that the hub can call to broadcast messages.
		    chat.client.addMessage = function (name, message) {
		        // Html encode display name and message.
		        var encodedName = $('<div />').text(name).html();
		        var encodedMsg = $('<div />').text(message).html();
		        // Add the message to the page.
		        $('#discussion').append('<li><strong>'   encodedName
                      '</strong>:&nbsp;&nbsp;'   encodedMsg   '</li>');
		    };
		    // Get the user name and store it to prepend to messages.
		    $('#displayname').val(prompt('Enter your name:', ''));
		    // Set initial focus to message input box.
		    $('#message').focus();
		    // Start the connection.
		    $.connection.hub.start().done(function () {
		        $('#sendmessage').click(function () {
		            // Call the Send method on the hub.
		            chat.server.send($('#displayname').val(), $('#message').val());
		            // Clear text box and reset focus for next comment.
		            $('#message').val('').focus();
		        });
		    });

		});
    </script>

</head>
<body>
    <div class="container">
        <input type="text" id="message" />
        <input type="button" id="sendmessage" value="Send" />
        <input type="hidden" id="displayname" />
        <ul id="discussion"></ul>
    </div>

</body>
</html>