|
|
|
ASP.Net ผมจะดึงข้อมลรูปภาพมาโชว์ในฟอร์มแก้ไขข้อมูลส่วนตัวจะ Select อย่างไรครับ C# |
|
|
|
|
|
|
|
ถามหน่อยภาพที่เก็บข้อมูลไว้น่ะ db เก็บแค่เชื่อ หรือ ทั้งหมด
|
|
|
|
|
Date :
2013-06-18 12:14:37 |
By :
dekkuza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเก็บเป็น Path ก็ PictureBox1.Image = image.fromfile( "Path" ) (เขียนโค้ดสดอาจจะผิด ประมาณนี้)
ถ้าเก็บเป็นไฟล์รูปใน database ก็ต้องไปดูเรื่อง Stream ไปหาดูครับ
|
|
|
|
|
Date :
2013-06-18 13:22:11 |
By :
01000010 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เก็บเเบบนี้ครับ ใน DB เป็น varchar
***ไม่เเน่ใจว่าเขาเก็บกันเเบบนี้รึป่าวครับ
Code (C#)
if (!this.FileUpload1.HasFile)
{
this.lblStatus.Text = "*กรุณาเลือกรูปภาพ";
}
else
{
this.FileUpload1.SaveAs(Server.MapPath("Pic/" + FileUpload1.FileName));
this.lblStatus.Text = "<b>" + FileUpload1.FileName + "</b> Uploaded.<br>";
strSQL = "INSERT INTO Register (UserName,Password,FullName,Sex,Address,EmailAdddress,Tel,Agencies,Position,Pic,Status) " +
" VALUES " +
" ('" + this.txtUsername.Text + "','" + this.txtPass.Text + "','" + this.txtname.Text + "','" + this.ddlsex.SelectedItem + "','" + this.TextBox1.Text + "', " +
" '" + this.txtmail.Text + "','" + this.txttel.Text + "','" + this.ddlAgen.SelectedItem.Value + "'," +
"'" + this.ddlPosi.SelectedItem.Value + "','" + FileUpload1.FileName + "','"+this.ddltype.SelectedItem+"')";
objCmd.Connection = objConn;
objCmd.CommandText = strSQL;
objCmd.CommandType = CommandType.Text; ;
objCmd.CommandText = strSQL;
|
ประวัติการแก้ไข 2013-06-18 13:23:24
|
|
|
|
Date :
2013-06-18 13:22:52 |
By :
Kaen17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันเป็น wep app อะคัรบ ไม่มี PictureBox1
ใน DB เก็บเข้าไปเเล้วเป็นเเบบนี้ครับ
ผู้รู้รบกวนด้วยนะคัรบ
:: ขอบคุณครับ
|
ประวัติการแก้ไข 2013-06-18 21:07:06 2013-06-18 21:08:01
|
|
|
|
Date :
2013-06-18 21:05:05 |
By :
Kaen17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รุปยังไม่มาเลยครับ ผมใช้เเบบนี้
Code (C#)
if (dtReader.HasRows)
{
dtReader.Read();
this.lblUsername.Text = dtReader["UserName"].ToString();
this.txtPass.Text = dtReader["Password"].ToString();
this.txtConpass.Text = dtReader["Password"].ToString();
this.txtname.Text = dtReader["FullName"].ToString();
this.ddlsex.SelectedValue = dtReader["Sex"].ToString();
this.txtAddress.Text = dtReader["Address"].ToString();
this.txtmail.Text = dtReader["EmailAdddress"].ToString();
this.txttel.Text = dtReader["Tel"].ToString();
this.ddlAgen.SelectedValue = dtReader["Agencies"].ToString();
this.ddlPosition.SelectedValue = dtReader["Position"].ToString();
Image1.ImageUrl = Server.MapPath("Pic/Pic");
this.Label1.Text = dtReader["Status"].ToString();
}
ไม่รู้ว่าผมตอนเก็บรูปภาพลง DB ผิดรึป่าว ?
|
|
|
|
|
Date :
2013-06-20 09:49:02 |
By :
Kaen17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>< ช่วยหน่อยครับ ยังไม่ได้เลย ไม่ทราบว่าผิดอะไรตรงไหนอย่างไรอะครับ ?
|
|
|
|
|
Date :
2013-06-21 12:55:02 |
By :
Kaen17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอนแสดงรูป
Image1.ImageUrl = "Pic/" + dtReader["Pic"].ToString();
|
|
|
|
|
Date :
2013-06-21 14:37:33 |
By :
watcharop |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โอ้ว โง่มานาน ขอบคุณมาก ๆ ครับ :)
|
|
|
|
|
Date :
2013-06-21 21:33:37 |
By :
Kaen17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เยี่ยม
|
|
|
|
|
Date :
2013-06-22 06:42:38 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|