





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; }
SELECT name FROM user WHERE uid=753087004
<?xml version="1.0" encoding="UTF-8"?> <fql_query_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" list="true"> <user> <name>Cheung Ming Ming</name> </user> </fql_query_response>
SELECT name FROM user WHERE timezone = '8' //取得GMT+0800 (香港)的用戶 /*或*/ SELECT name FROM user WHERE uid > 0