2019年9月19日 星期四

前端js/後端cs互相傳值

https://leofunlife3.blogspot.com/2019/01/jscs.html

前端js/後端cs互相傳值


//新增一個hidden變數, 前後端pass value可透過此變數(常用手法)

<input type="hidden" id="abc" runat='server' />



//新增一個js, 把要傳給後端的參數寫到hidden變數

<script type="text/javascript">

function setvalue() {

  var a = document.getElementById("abc");

  a.value = "這是js要給後端的參數";

}

</script>


test.aspx.cs(後端)


Label1.Text = "承接js傳過來的參數是 "+ Request.Params["abc"];


後端CS傳值給前端JS 

test.aspx.cs(後端)

protected void Page_Load(object sender, EventArgs e) {

  form1.InnerHtml = "";

  for (int i = 0; i < 10; i++) {

    form1.InnerHtml += "<button onclick='send(" + i + ")'>click</button>";

  }

}

test.aspx(前端)

<script type="text/javascript">

  function send(id) {

    alert(id);

  }


</script>










2019年9月11日 星期三

SignalR 第一次使用就上手!!實作即時在線人員

http://marco.easyusing.com/2015/02/signalr.html

(jquery 運用 :

https://www.jquery123.com/jQuery.each/
http://www.eion.com.tw/Blogger/?Pid=1151
https://blog.miniasp.com/post/2009/03/25/location-href-and-location-replace-in-practice

)
https://www.itread01.com/content/1547829386.html

https://sweeteason.pixnet.net/blog/post/43607932-%5Bc%23%5D-%E5%88%A9%E7%94%A8-signalr-%E8%AE%93%E9%9B%BB%E8%85%A6%E7%89%88%E8%88%87%E8%A1%8C%E5%8B%95%E8%A3%9D%E7%BD%AE%E7%B6%B2%E9%A0%81%EF%BC%8C%E5%8F%AF

SignalR Chat App With ASP.NET WebForm And BootStrap - Part One


SignalR Chat App With ASP.NET WebForm And BootStrap - Part One

https://www.c-sharpcorner.com/article/signalr-chat-app-with-asp-net-webform-and-bootstrap/

https://www.c-sharpcorner.com/article/signalr-chat-app-with-asp-net-webform-and-bootstrap-part-two/

https://www.c-sharpcorner.com/article/signalr-chat-app-with-asp-net-webform-and-bootstrap-part-three/


.Net 利用 WebBrowser 製作 網頁截圖 功能

https://www.ez2o.com/Blog/Post/csharp-WebBrowser-Screenshots

https://roronoa.pixnet.net/blog/post/25311890-c%23-%3A-%E8%9E%A2%E5%B9%95%E6%8A%93%E5%9C%96

2019年9月5日 星期四

JQuery快速入門

http://www.manongjc.com/article/22730.html

Javascript 事件處理

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="prjJavascrip.WebForm1" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <script>
        var over = function (element) {
            element.style.color = "red";
        }
        var out = function (element) {
            element.style.color = "black";
        }
        //javascript動態的註冊事件處理器
        function init() {
            var btn = document.getElementById("btn");
            btn.onclick = function () {
                alert("Clicked");
            }
            //javascript動態的註冊事件處理器
            var btn2 = document.getElementById("btn2");
            var handler = function () { //準備一個事件處理器(對應事件的函式)
                alert("Clicked");
            }
            btn2.addEventListener("click"/*事件的名稱*/, handler);

            var btn3 = document.getElementById("btn3");
         
            var handler3 = function (e) {
                //1.使用者點擊了按鈕, 觸發click事件
                //2.瀏覽器主動收集和事件有關的資訊, 並製造出Event Object事件物件
                //var eventObj = 事件物件;
                //3.呼叫已經註冊的事件處理器(事件處理函式)
                //handler(eventObj);
                alert(e.clientX+","+e.clientY);
            }
            btn3.addEventListener("click"/*事件的名稱*/, handler3);

            document.addEventListener("keydown", function (e) {//匿名函式:用來直接當作事件處理器
                alert(e.keyCode);
            });
        }
    </script>
</head>
<%--onload下載時觸發事件--%>
<body onload="init();">
    <form id="form1" runat="server">
        <div>
            <button id="btn">按我一下 </button>
        </div>
        <div>
            <button id="btn2">再按我一下 </button>
        </div>
        <div>
            <button id="btn3">事件event </button>
        </div>
        <div>
            <button onclick="alert('Clicked');">Clicked</button>
            <span onmouseover="this.style.color='red'"
                onmouseout="this.style.color='black'">Test</span>
        </div>
        <div>
            <%--this代表span物件--%>
            <span onmouseover="over(this);"
                onmouseout="out(this);">HELLO</span>
        </div>
    </form>
</body>
</html>

WPF聊天室应用(ASP.NET Core SignalR)

  WPF聊天室应用(ASP.NET Core SignalR) https://www.bilibili.com/video/BV1Q741187Si?p=2 https://www.bilibili.com/video/BV1UV411e75T?from=search&...