public DataTable XmlToDataTable(string xmlData) { DataTable Dt = new DataTable(); XmlDocument xmlDoc = new XmlDocument(); xmlDoc.LoadXml(xmlData); XmlNode root = xmlDoc.FirstChild.ChildNodes[0]; for (int i = 0; i < root.ChildNodes.Count; i++) Dt.Columns.Add(new DataColumn(root.ChildNodes[i].Attributes[0].InnerXml, typeof(string))); foreach (XmlNode xmlNode in xmlDoc.GetElementsByTagName("ROW")) { DataRow Dr = Dt.NewRow(); for (int i = 0; i < xmlNode.ChildNodes.Count; i++) Dr[i] = xmlNode.ChildNodes[i].InnerText; Dt.Rows.Add(Dr); } return Dt; }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง