2021年4月30日 星期五

Views

Visual Studio Community 2019 安裝設定

 目的:想變更安裝路徑來減少C槽負擔



 1.圖中IDE位置都可以自行選擇

 2.Download Cache和Shared components,tools and SDKs要到登錄的 

    編輯程式去修改預設位置

 3.執行WIN + R --> regedit --> HKEY_LOCAL_MACHINE -->SOFTWARE -->Microsoft -->VisualStudio --> Setup-->編輯 SharedInstallationPath ,如圖


參考好文:第一篇/第二篇/設定編輯程式位置

總結:SDK套建件不建議裝在固態的SSD套件,會增加磁碟的IO

2021年4月10日 星期六

Views

網頁文章排版

 1.標籤參考

 2.遷入程式碼為html會失敗,要使用HTML Encode轉換

Views

Jquery 函式庫用法

 1. animate() 動畫效果之意


一堆假文字 
  <div id="a"/></div>//隱藏錨點  
//搭配jquery
$('#mybtn').click(function(){   //當按鈕按下

    $("html,body").animate({   //html的body 動畫效果 就會搭配網頁卷軸效果 $.attr(this, 'position') 抓到該顆按鈕的position屬性
    scrollTop:$($.attr(this, 'position')).offset().top},1000); //scrollTop 控制網頁卷軸 1000 是動畫移動速度毫秒
    });//然後網頁卷軸以1000毫秒偏移到設定錨點的a位置上方 

2021年4月2日 星期五

Views

ASP.NET 前後端取值

 1.下拉選單

  前端:

  <select name="Dog">

  <option>請選擇你最愛的寵物</option>

    <option value="1">Dog</option>

    <option value="2">Cat</option>

</select>

  後端:

  (Request.Form["Dog"]??string.Empty)

Views

C# 基本觀念

 1.兩個問號

  int a=b??y (意思為:b如果是null的話,a就等同於y)

  int a=(b==null?y:b)

2.DataTable取欄位名稱和該值用法

foreach(DataRow row in dt.Rows)
{  foreach(DataColumn column in dt.Columns)
    {  //column.ColumnName 欄位名稱  row[column]欄位值
    Response.Write(column.ColumnName+":\t"+row[column]+"\t");
    }
    Response.Write("</br>");
}