<asp:GridView ID="GridUser" runat="server" AutoGenerateColumns="false" AllowPaging="true" BackColor="LightGoldenrodYellow" BorderColor="Tan" BorderWidth="1px" CellPadding="2" ForeColor="Black" PageSize="3" OnPageIndexChanging="OnPageIndexChanging"> <Columns> <asp:BoundField Itemstyle-Width="30px" DataField="UserID" HeaderText="UserID" /> <asp:BoundField Itemstyle-Width="150px" DataField="UserName" HeaderText="UserName" /> <asp:BoundField Itemstyle-Width="150px" DataField="Password" HeaderText="Password" /> <asp:BoundField Itemstyle-Width="150px" DataField="VenderID" HeaderText="VenderID" /> <asp:BoundField Itemstyle-Width="200px" DataField="EmailID" HeaderText="Email"/> <asp:BoundField Itemstyle-Width="50px" DataField="EmailStatus" HeaderText="EmailStatus" /> <asp:BoundField Itemstyle-Width="50px" DataField="Permission" HeaderText="Permission" /> <asp:BoundField Itemstyle-Width="160px" DataField="CreateDT" HeaderText="CreateDataTime" /> <asp:BoundField Itemstyle-Width="500px" DataField="Descriptions" HeaderText="Descriptions" /> </Columns> </asp:GridView>
void BindData() { DataSet dg = DataControls.GetAddUserAll(); if (dg.Tables[0].Rows.Count != null) { if (dg.Tables[0].Rows.Count > 0) { GridUser.DataSource = dg.Tables[0]; GridUser.DataBind(); } } else { GridUser.Visible = true; } }
<asp:GridView ID="gridview1" runat="server" AutoGenerateColumns="False" OnRowDataBound="OnRowDataBound"> <Columns> <asp:BoundField DataField="EmailStatus" HeaderText="EmailStatus"> <ItemStyle Width="50px" /> </asp:BoundField> </Columns> </asp:GridView>
protected void OnRowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { TableCell statusCell = e.Row.Cells[5]; // cell ของ email อยู่คอลัมป์ [5] if (statusCell.Text == "True") { statusCell.Text = "Have email"; } if (statusCell.Text == "False") { statusCell.Text = "No email"; } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง