Google Sitemaps是Google的一個和網站管理員相關的工具,有點象BLOG的RSS功能,是一個方便自己的服務,如果大家(互連網上所有的資訊源)都採用了這種方式提交自己的更新的話,Google就再也不用派出那麼多爬蟲辛辛苦苦的到處亂竄了,任何一個網站,只要有更新,便會自動“通知”Google,方便Google進行索引。 初步使用了一下Google
作業環境主機:Win7 X86 SP1虛擬機器:VMware station 8虛擬機器裡的系統:Fedora 15環境上,不管什麼系統,什麼版本的虛擬機器,使用上都是大同小異的,畢竟核心是不變的。 VM虛擬機器下linux系統,橋接和NAT方式,都是可以臨時切換,即時生效的,不必糾結於到底使用哪個好。關於虛擬機器VMware 3種網路模式(橋接、nat、Host-only)的工作原理,可參見我的另一篇部落格http://www.cnblogs.com/gylei/archive/2012/04
Entity Framework 5.0 增刪改查(級聯)[TestClass] public class UnitTest1 { [TestMethod] public void TestInsert() { using (TestEntities1 context = new TestEntities1()) { User user = new User();
出錯環境:REHL x.x。在一般使用者下執行sudo命令提示llhtiger is not in the sudoers file. This incident will be reported.解決方案:一、$whereis sudoers -------找出檔案所在的位置,預設都是/etc/sudoers 二、#chmod u+w /etc/sudoers--------以超級使用者登入su -root ,修改檔案許可權即添加檔案擁有這的寫入權限(ls -al
建構函式(Constructor) 也稱為構造方法定義:1.建構函式的名字必須與當前類的名字相同2.建構函式沒有傳回值類型的定義。eg: public class A { A(){ //與類名相同,無傳回值類型的定義 } }函數格式為“對象.函數”;而調用建構函式的格式為 “new 建構函式”;見下述執行個體調用普通函數eg: //定義一個類Ol,含有三個方法(函數) public class
IntroductionThe purpose of this tutorial is to provide detailed steps on how to create a SSIS Package. The package given below reads the data from a source tab delimited text file and based on certain conditions, saves the output in two separate
ObjectContext instance has been disposed and can no longer be used for operations that require a connection 解決辦法: 用例介紹:-----------------------------------------A和B 1對多關係A 1->* B B和C 多對1關係B *->1 C 現在依賴A查詢C-------------------------------------