





Internet Explorer 8 Home
http://www.microsoft.com/ie8
Download Internet Explorer 8 Beta 2
http://www.microsoft.com/windows/internet-explorer/beta/worldwide-sites.aspx
啟用 Windows Vista 資訊看板時,Visual Studio 2008 SP1 安裝失敗。
若要解決這個問題:
1. 以滑鼠右鍵按一下通知區域中的 [資訊看板] 圖示,位於工作列的最右邊。
2. 按一下 [結束]。
public List<string> GetList() { List<string> pList = new List<string>(); DataClasses_Store DataContext = new DataClasses_Store(); //Select the customer where live in "HongKong" and Take 100 records var select = (from c in DataContext.customer_info where c.customer_location.Equals("HongKong") orderby c.reg_date descending select new { c.customer_id , c.customer_name } ).Take(100); //Fill the List foreach (var s in select) { pList.Add(c.customer_id + " " + c.customer_name); } return pList; }
public List<string> GetList() { List<string> pList = new List<string>(); DataClasses_Store DataContext = new DataClasses_Store(); //Select the customer where live in "HongKong" and Take 100 records var select = (from c in DataContext.customer_info where c.customer_location.Equals("HongKong") orderby c.reg_date descending select new { c.customer_id , c.customer_name } ).Take(100); //Fill the List pList.AddRange(select.Select(p => p.customer_id + " " + p.customer_name).AsEnumerable()); return pList; }