2015年5月12日 星期二

讓您的 VS 2012 / VS 2013 升級開發 .NET 4.6 -- Targeting the .NET Framework 4.6 (多目標套件)

原文出處:

讓您的 VS 2012/2013 升級開發 .NET 4.6 -- Targeting the .NET Framework 4.6 (多目標套件)


http://www.dotblogs.com.tw/mis2000lab/archive/2015/05/12/vs2012_vs2013_targeting_net_framework_4.6.aspx



VS 2012與 VS 2013的用戶
如果想要升級到 .NET 4.6繼續開發

** 除了 VS 2015之外,是否還有其他選擇?**


根據MSDN Blog 這篇文章的說明
      Targeting the .NET Framework 4.6
      ( .NET Framework 4.6 多目標套件。 目前為RC版)
提醒您:您必須先下載和安裝 .NET Framework 4.6 ,才能安裝 "多目標套件"
You need to download and install the .NET Framework 4.6 prior to installing the multi-targeting pack
.NET Framework 4.6 多目標套件能讓開發人員使用 Visual Studio 2013、Visual Studio 2012
或協力廠商 IDE 來建置以 .NET Framework 4.6 為目標的應用程式。
The .NET Framework 4.6 Multi-Targeting Pack is a package that enables developers to build applications targeting the .NET Framework 4.6 using either Visual Studio 2013, Visual Studio 2012 or third party IDEs. .


資料來源:目前為RC版)
  


ASP.NET課程 / ASP.NET教學,請看
    http://www.dotblogs.com.tw/mis2000lab/archive/2011/06/24/29807.aspx

    [台北] ASP.NET入門實戰 + ADO.NET進階【二合一】49 hr


ASP.NET影片、遠距教學,請看:
    http://www.dotblogs.com.tw/mis2000lab/archive/2015/03/09/aspnet-online-learning-distance-education-2015.aspx

    [遠距教學、教學影片] ASP.NET (Web Form) 六週課程 上線了!



我將思想傳授他人, 他人之所得,亦無損於我之所有;
猶如一人以我的燭火點燭,光亮與他同在,我卻不因此身處黑暗。----Thomas Jefferson
  
......... 寫信給我,mis2000lab (at) yahoo.com.台灣 .....................................................................................
................   facebook社團   https://www.facebook.com/mis2000lab   ............................
................   Google+   https://plus.google.com/100202398389206570368/posts ..............
................  YouTube (ASP.NET) 線上教學影片  http://goo.gl/rGLocQ






原文出處:

讓您的 VS 2012/2013 升級開發 .NET 4.6 -- Targeting the .NET Framework 4.6 (多目標套件)


http://www.dotblogs.com.tw/mis2000lab/archive/2015/05/12/vs2012_vs2013_targeting_net_framework_4.6.aspx

2015年5月11日 星期一

[重點翻譯] ASP.NET 4.6的更新 -- 本文只摘錄 Web Forms的部分

原文出處:

[重點翻譯] ASP.NET 4.6的更新 -- 本文只摘錄 Web Forms的部分

http://www.dotblogs.com.tw/mis2000lab/archive/2015/05/04/asp.net_46_web_form_updating_from_msdn_blog.aspx


日前,微軟 Build 2015大會發佈了許多新技術與訊息
微軟 MSDN Blog也分享了許多第一手資訊。

因為我只注重在 Web Form這塊,只摘錄這方面的重點
MVC 5 / Web API 2 / EF的用戶可以參閱原文
(發表於 2015/4/30,此時的VS 2015版本為RC版。後續文章的圖片也引用自原文)

==== 文章摘錄如下: ========================================================

What is ASP.NET 4.6?
何謂 ASP.NET 4.6?
ASP.NET 4.6是 umbrella term給現有framework,例如:ASP.NET Web Form / MVC 5 / Web API 2等等升級使用的。
您可以在標準的、桌面上(desktop-enable)的.NET Framework Model用它來建構Web Apps。
Improvements in ASP.NET 4.6 for Web Forms/ MVC 5/ Web API 2.
ASP.NET 4.6在Web Form上的改進  (MVC 5 / WEb API 2的用戶,請參閱原文說明)
ASP.NET 5(譯者註解:開放源碼)上的部分運作功能,也會再ASP.NET 4.6的改進framework上運作。
包含.NET Compiler Platform(Roslyn / 羅斯林專案)、在IIS上支援HTTP/2功能等等。
Authentication Updates
驗證的升級
ASP.NET 4.6樣板現在採用了Open Id Connect中介軟體來作Azure AD的驗證。如下圖,最新的驗證設定畫面。
(點選圖片可超連結到原文)
clip_image002
Enabling the .NET Compiler Platform (“Roslyn”) in ASP.NET applications
在VS 2015裡面的Web Forms樣板,預先安裝了軟體套件。下圖就是一個Web Forms網頁。
(點選圖片可超連結到原文)
clip_image004
使用Web Forms的用戶,上圖的底部(Error List)雖然出現一些錯誤訊息,但請您放心,不會影響到專案的正常運作。
Async Model Binding for Web Forms
Web Forms的 "非同步 Model Binding"
ASP.NET 4.5把MVC使用的Model Binding讓Web Forms也能享有相同的便利。
ASP.NET 4.6則是為Web Forms使用的 Model Binding,加入非同步(Async.)功能。 
程式範例如下:(引用自原文網站)
註解:底下的Web Forms用了 GridView控制項,透過Model Binding(查詢、撈出、Select Method)學生資料
<%--
    Web Forms page calling a select method to model bind to a list of students.
    The GridView uses Model Binding to bind to Student type in your app.
    To use Async Model Binding, mark your page with Aysnc=True attribute.
    --%>
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" Async="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication226._Default" %>
     runat="server" ID="studentsGrid"
        ItemType="ContosoUniversityModelBinding.Models.Student" DataKeyNames="StudentID"
        SelectMethod="studentsGrid_GetData"
        UpdateMethod="studentsGrid_UpdateItem"
        DeleteMethod="studentsGrid_DeleteItem"
        AutoGenerateEditButton="true"
        AutoGenerateDeleteButton="true"
        AllowSorting="true" AllowPaging="true" PageSize="4"
        AutoGenerateColumns="false">
       
           
           
           
           
           
               
                   
                        runat="server" />
               
           
       
   
   
   
//Async method for Select
public async Task studentsGrid_GetData(int startRowIndex, int maximumRows)
{
    SchoolContext db = new SchoolContext();
    var query = db.Students.Include(s => s.Enrollments.Select(e => e.Course));
    SelectResult result = new SelectResult(query.Count(),
        await query
        .SortBy("StudentID")
        .Skip(startRowIndex)
        .Take(maximumRows)
        .ToListAsync());
    return result;
}
譯者註解:您也可以參考這篇文章,使用 VB語法的 "非同步" Model Binding,範例如下。
別忘了 @Page指示詞裡面要加上   <%@ Page Language="VB" Async="true"
     SelectMethod="vsTweetList_GetData" ItemType="LinqToTwitter.Status">
     
         
          <%#: $"At: {Item.CreatedAt.ToString("T")} on {Item.CreatedAt.ToString("d")}" %> 
         
 
          <%#: Item.Text %> 
         

   
     

  
Public Function vsTweetList_GetData() As IEnumerable(Of Status)
     Return GetTweetsFor("VisualStudio")
End Function 
Public Async Function vsTweetList_GetDataAsync() As Threading.Tasks.Task(Of IEnumerable(Of Status))
     Return Await GetTweetsForAsync("VisualStudio")
End Function
Add support for HTTP/2
支援HTTP/2
在Windows 10與.NET Framework 4.6,增加了HTTP/2的支援。
HTTP/2的主要目標是讓瀏覽器到網站的單一連結,能夠改善效能、減少延遲、增加網路使用率。
這一段影片有更多介紹
Updated Ajax Control Toolkit
Ajax Control Toolkit的更新
Web Form開發者愛用的AJAX Toolkit也有更新。


=========================================================================
關於 Build 2015大會的新宣示,其他新的功能與說明


上面文章裡面提到的幾個專有名詞,您可以查閱以前發表過的文章:

[中文翻譯] Visual Studio的 羅斯林專案(Roslyn Project)


[中文翻譯] ASP.NET 5 概觀 (ASP.NET 5 Overview,原作 Tom FitzMacken 2014/11/12)

[中文翻譯] ASP.NET 5 簡介(Introducing ASP.NET 5,原作ScottGu 2015/2/23)







ASP.NET課程 / ASP.NET教學,請看
    http://www.dotblogs.com.tw/mis2000lab/archive/2011/06/24/29807.aspx

    [台北] ASP.NET入門實戰 + ADO.NET進階【二合一】49 hr


ASP.NET影片、遠距教學,請看:
    http://www.dotblogs.com.tw/mis2000lab/archive/2015/03/09/aspnet-online-learning-distance-education-2015.aspx

    [遠距教學、教學影片] ASP.NET (Web Form) 六週課程 上線了!




我將思想傳授他人, 他人之所得,亦無損於我之所有;
猶如一人以我的燭火點燭,光亮與他同在,我卻不因此身處黑暗。----Thomas Jefferson

......... 寫信給我,mis2000lab (at) yahoo.com.台灣 .....................................................................................
................   facebook社團   https://www.facebook.com/mis2000lab   ............................
................   Google+   https://plus.google.com/100202398389206570368/posts ..............
................  YouTube (ASP.NET) 線上教學影片  http://goo.gl/rGLocQ






原文出處:

[重點翻譯] ASP.NET 4.6的更新 -- 本文只摘錄 Web Forms的部分

http://www.dotblogs.com.tw/mis2000lab/archive/2015/05/04/asp.net_46_web_form_updating_from_msdn_blog.aspx

會寫網頁 就會寫手機APP #2-- 範例修正 , Hybrid Mobile Apps for ASP.NET Developers (Apache Cordova)

原文出處:

會寫網頁 就會寫手機APP #2-- 範例修正 , Hybrid Mobile Apps for ASP.NET Developers (Apache Cordova)

http://www.dotblogs.com.tw/mis2000lab/archive/2015/05/11/aspnet_apache_cordova_vs2015.aspx



會寫網頁 就會寫手機APP -- Hybrid Mobile Apps for ASP.NET Developers (Apache Cordova)


請您直接下載範例與PDF文章(介紹)
Hybrid Mobile Apps for ASP.NET Developers

(1).  官方網站提供的範例,無法在 VS 2015 RC版上運作
需要一些微調與修正

事實上,在VS 2015以前,您要安裝這個工具,需要外掛、或是手動添加
(這種 Preview時期,對於我比較沒有吸引力,我想等他正式版出來會比較OK)
在上個月底(2015/4月底)推出的VS 2015 RC版,這個套件已經變成「安裝VS 2015」時可以選擇一起安裝進去的選項了
所以,裝好就能用,不用外掛或是動手掛載

因為原廠提供的範例,可能是 VS 2013撰寫的
(直接用 VS 2015 RC版開啟這個範例,會直接報錯)
專案的架構(目錄結構)跟VS 2015 RC版的專案不一樣

    下圖為 VS 2015 RC版的 " Apache Cordova 專案"
    我先用空白專案來作,比較簡潔
      

    我們先瞭解 Apache Cordova的專案架構(目錄結構)以後,就能微調這個範例
    讓他運作。
      
  • merges目錄。Windows、iOS與Android平台的程式與各平台會用到的JavaScript函式庫都放置於此。Android僅支援2.3(含)以上的版本。
支援的 Mobile OS列表:
  • Android 2.3.3 and later (4.4 provides the best developer experience)
  • iOS 6, 7, and 8
  • Windows 8 and 8.1
  • Windows Phone 8 and 8.1
  • res目錄。各平台用到的圖示、模擬器的啟始畫面等等,或是 相關設定檔。
  • scripts目錄。給JavaScript、.js檔案(各種.js函式庫)使用 或是 應用程式會用到的函式庫。
  • www目錄。裡面是我們程式(網頁)的所在地。主要的檢視畫面為 index.html檔。
  • 根目錄下面的config.xml檔,應用程式的設定值放於此檔案內
 

    網頁會用到的檔案(如 css、.js檔)請放在 www目錄底下。
    除此之外,請您放在專案的 "根目錄"底下,例如:bld目錄等等
    (在 VS 2015的 "方案總管"裡面,沒法看見所有目錄。很多都被隱藏起來。  
        建議您到 Windows「檔案總管」裡面才能看清楚。.......這個步驟花了我很長的時間,但也逼迫我去瞭解裡面:哪些檔案用來作什麼呢?)



(2).  完成之後,Andorid模擬器為何還是無法運作出成果??
    因為這個範例用到GPS定位系統
    請改用 Ripple模擬器來觀看成果。如下圖

    除了速度比較快以外(不用載入模擬器、開機等等,這時間很漫長),也能用到一些外掛功能。



最後要提醒您:
外掛(掛載)的GPS定位系統,不要自己動手去改 Config.xml設定檔
請您在 VS 2015的「方案總管」去點選、打開這個設定檔。

在設定畫面中,選取、加入(有一個 [Add]按鈕)
類似 NuGet幫我們安裝一些外掛軟體的方式,
用這方式來作比較好,不要自己動手改設定檔。

因為範例檔太大了,BLOG擺不下,您可以自己試試看。


原文出處:

會寫網頁 就會寫手機APP #2-- 範例修正 , Hybrid Mobile Apps for ASP.NET Developers (Apache Cordova)

http://www.dotblogs.com.tw/mis2000lab/archive/2015/05/11/aspnet_apache_cordova_vs2015.aspx