一、什麼是WebService?Web Service是Internet上構建分布式應用的基本構件。是分布式應用的最重要的一項技術。它是通過soap在web上提供的軟體服務,使用WSDL描述、使用UDDI註冊二、組成1、 Web服務。Invoke Web Service methods2、WSDL 描述webservice方法 描述依賴關係(dataset/XSD)3、發現文檔(DISCO) 公布WebService4、註冊Web Service(UDDI)
首先關注MSDN上關於Attachment的兩個解釋:Attachment ConstructorFirst of all, the Stream that you supply to an attachment is not read until you actually send a message. That should make sense enough, but sometimes it's easy to forget. If your stream relies on some
1. SVG背景透明的解決辦法 IE中,完全可以支援SVG透明。 條件:使用<embed>標籤 (自己測試的,其他標籤未知) Tip: Internet Explorer supports an additional attribute, wmode="transparent", that let the HTML page background shine through.
1.計算含有雙位元組(比如漢字)的佔用長度比如:string str = '" I Love 中國";如果直接用str.Length 則發現結果9,其中"中國".Length = 2,有點不符合常規,特別實在字串輸出格式控制時造成麻煩 CodeCode highlighting produced by Actipro CodeHighlighter
在.net中讀Excel可以通過兩種方式讀取1.以資料庫的方式,這種方式簡單明了,推薦。參考代碼如下:注意修改兩個地方Data Source=C:/Book.xls指Excel檔案的位置,string.Format("select * from [{0}$]", p_tagName)中p_tagName指Sheet標籤頁的名稱CodeCode highlighting produced by Actipro CodeHighlighter