webber Chang

@sdwh

Joined on May 31, 2017

  • # MVC程式開發筆記 <span class="fa fa-clock-o"/> 2017-10-3 [TOC] ## 基礎筆記 ### SQLExpress 家庭用 :::success (localdb)\MSSQLLocalDB ::: ### Database First, How To Connect MVC to Database 1. Models (rightClick) > 新增 ADO.NET 實體資料模型 2. 從資料庫產生 3. 新增連結 (hqssql****t) 4. 選取資料表 5. 完成 ### Unobtrusive jqueryval 1. 加入section scripts ```javascript= @section scripts{ @Scripts.Render("~/bundles/jqueryval") } ``` 2. 加入Html Helper, input 必須使用helper 否則必須自打data-val ```htmlmixed= @Html.ValidationMessageFor(model
     Like  Bookmark
  • # MSMQ Message Queuing :::danger **使用限制 :** 傳送端與接收端都需要開啟MSMQ功能才能遠端傳送與接收。 ::: :::success **WHAT IS MSMQ :** *Def one*<br/> Message Queuing (MSMQ) technology enables applications running at different times to communicate across heterogeneous networks and systems that may be temporarily offline. Applications send messages to queues and read messages from queues. *Def two*<br/> MSMQ is essentially a messaging protocol that allows applications running on separate servers or processes(s) to comm
     Like  Bookmark