SqlDataAdapter daT = new SqlDataAdapter(TimeS, objConn); daT.Fill(dtT); // เอา dtT ไปโชว์ที่ DetailsView1 DetailsView1.DataSource = dtT; DetailsView1.DataBind();
foreach (DataRow row in dtT.Rows) { Label1.Text = dtT.Rows[0]["step"].ToString(); }
public static string StripHtml(string html, bool allowHarmlessTags) { if (html == null || html == string.Empty) return string.Empty; if (allowHarmlessTags) return System.Text.RegularExpressions.Regex.Replace(html, "", string.Empty); return System.Text.RegularExpressions.Regex.Replace(html, "<[^>]*>", string.Empty); }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง