2012/02/23

on
Visual Basic wiki ::: XML wiki ::: XML 系列教程(w3school CN) :
Visual Basic 2008 / 2010 Tutorials[en] ::: Visual Basic 2010 Express Tutorials[en]
Microsoft Visual Basic Programming[en] ::: xx ::: xx ::: xx

MSDN Visual Basic 語言參考 ::: MSDN「邊做邊學」 :::  IT技術點部落 :

微軟周四(5/31)釋出Visual Studio 2012及.NET Framework 4.5的RC版,這兩個產品的正式版都預計於今年出爐。


Visual Studio 2010 妙用錦囊 ::: Visual Studio 2010 開發技巧 ::: xx ::: xx ::: xx
Visual Studio 2010 修練大會競賽文章總覽 ::: xx ::: xx ::: xx
VB.NET Tutorial and source code(en)  : http://vb.net-informations.com/
影片 : Entity Framework 實戰技巧 ::: xx ::: xx ::: xx
TabControl1.SelectedTab = TabPage1
================================================
WCF 功能詳細資料 : http://msdn.microsoft.com/zh-tw/library/ms733103.aspx
Mis2000 Web Service (WCF) Tag (VB)
VS 2010 遠端偵錯 : http://www.dotblogs.com.tw/orhuang/archive/2011/12/26/63461.aspx
2010-12-09 吉米 : WCF REST Service開發 : http://jimmy0222.pixnet.net/blog/post/36347116-wcf-rest-service%E9%96%8B%E7%99%BC
2009-04-29史帝芬 : WCF 概要 : https://sites.google.com/site/stevenattw/dot-net/wcf/wcf-essentials
如何透過工具叫用與測試WCF的服務 - WcfTestClient
詳解WCF服務使用NetTcp傳輸大文件的代碼(c#)(cn)
程湘之間: WCF Data Service 的優缺點 : http://charlesbc.blogspot.com/2011_06_01_archive.html
SOA 與 WCF 原來如此
影片WCF_Service_and_Client VB
影片 : WCF_Client VB
================================================
Timothy - VB.NET 教學 : http://www.dotblogs.com.tw/timothy/category/3769.aspx?Show=All
格子樑 : Asp.Net 教學網站 : http://www.allenkuo.com/EBook5/view.aspx?TreeNodeID=9&id=59
MSDN Visual Basic 語言參考 : http://msdn.microsoft.com/zh-tw/library/sh9ywfdk.aspx
Visual Basic 2010 殷老師筆記 : http://sites.google.com/site/yinvb2010/01-ren-shi-lei-bie/6-xin-zeng-mo-zu
Web Deploy 2.0 : The Official Microsoft IIS Site : http://www.iis.net/download/WebDeploy
HOW TO:使用發行網站工具部署網站專案 : http://msdn.microsoft.com/zh-tw/library/20yh9f1b%28v=vs.100%29.aspx
ASP.NET Web 應用程式專案部署概觀 : http://msdn.microsoft.com/zh-tw/library/dd394698.aspx
ku3 的點部落 - VB.net : http://www.dotblogs.com.tw/ku3/Tags/VB.net/default.aspx
================================================
The Will Will Web | Entity Framework 快速上手 ; 學習資源整理 : http://blog.miniasp.com/post/2009/03/02/Entity-Framework-Quick-Start-and-Leaning-Resources.aspx#continue
================================================
MSDN XmlReader 類別 (System.Xml)
 VB 9.0 - 很屌的新功能 XML Literals
建立 XML 文件 - 使用XmlWriter - 程式開發筆記簿
VB.NET XML的基本使用(成大醫院資訊室)
簡單的XML R/W範例
VB.NET中操作xml文件(插入節點、修改、刪除)(CN)
XML檔案基本操作-XmlDocument (c#) : http://www.dotblogs.com.tw/yc421206/archive/2010/08/10/17108.aspx
將資料庫資料寫入XML再使用GridView讀出 : http://skype.pchome.com.tw/skypetwweb/knowledge/knowledge.action?method=dispListpage&catId=20

XML入門系列 (3) : (c#) 巡覽 XML 文件 : http://www.dotblogs.com.tw/johnny/archive/2010/01/26/13332.aspx
================================================
Msdn System.io ::: DirectoryInfo ::: File ::: FileInfo :::: StreamReader ::: StreamWriter
    ::: TextReader ::: TextWriter ::: xx ::: xx ::: xx ::: xx
VB.Net複製、刪除文件的示例詳解(cn)
影片 : Visual Basic Tutorial - 125 - StreamReaders
================================================
[Visual Studio]快速建立自己的project template : http://www.dotblogs.com.tw/hatelove/archive/2011/07/06/visual-studio-create-your-project-template.aspx

活用 Visual Studio 2010 組態管理員進行方案與專案組態管理
================================================
Xml , Xslt 特殊字元對應表 :

原字元 轉換字元
' '
" "
space   (xslt)
< <
> >
& &
space  (html)

================================================
取得遠端用戶端的 IP 主機位址 : HttpRequest.UserHostAddress
WCF 取得遠端 IP 的類別等 : OperationContext.Current , MessageProperties , RemoteEndpointMessageProperty , 非 HttpRequest.UserHostAddress
================================================
寫入檔案大致可先區分為三種方式
FileStream 和 StreamWrite 組合
    Dim theFile As FileStream = File.Create("d:\temp\asdf_w.txt")
    Dim sw As StreamWriter = New StreamWriter(theFile)
    sw.WriteLine("Hello")
    sw.Close()
    theFile.Close()
StreamWrite 直接將文字寫入新檔案裡
Dim sw As StreamWriter = File.CreateText("d:\temp\asdf_w2.txt")
    sw.WriteLine("Hello")
    sw.Close()
File 類別也支援可將否字串寫入新檔案的 WriteAllText 方法.
File.WriteAllText("d:\temp\asdf_w3.txt", "Hello")

================================================
================================================
================================================
================================================
================================================
================================================
================================================
================================================
a
a

0 意見: