ถามเรื่องการ insert เกียวกับรุปภาพเข้าฐานข้อมูล แล้วโดยใช้ control <asp:fileuplode แล้วเกิด Error
ถามเรื่องการ insert เกียวกับรุปภาพเข้าฐานข้อมูล แล้วโดยใช้ control <asp:fileuplode แล้วเกิด Error
เรียนท่านผู้รู้ช่วยดูให้หน่อยนะคับ
หน้า ClassEmployee.cs
string strCmd = "INSERT INTO Food(Name,type,Price_per_table,Total,Deteal,unit,Picture,Status)";
strCmd += "VALUES('" + Name + "','" + type + "','" + Price_per_table + "','" + Total + "','" + Deteal + "','" + unit + "','" + Picture + "','" + Status + "')";
page EmpFormFoods1.aspx
Code (C#)
<asp:FileUpload ID ="Picture" runat="server" Width="230px" /></td>
page EmpFormFoods1.aspx.cs
protected void btSAVE_Click(object sender, EventArgs e)
{
ClassEmployee cm = new ClassEmployee();
// (string Name, string type, Decimal Price_per_table, string Total, string Deteal, string unit,string Picture, string Status)
if (cm.insertFood(Name.Text, type.Text, Price_per_table.Text, Total.Text, Deteal.Text, unit.Text,Picture.text, Status.Value.ToString()))
{
Response.Write("<script>alert('บันทึกข้อมูลเรียบร้อย') </script>");
Name.Text = string.Empty;
type.Text = string.Empty;
Price_per_table.Text = string.Empty;
Total.Text = string.Empty;
Deteal.Text = string.Empty;
unit.Text = string.Empty;
Picture.Text = string.Empty;
Status.Text = string.Empty;
}
else
{
Response.Write("<script>alert ไม่สามารถบันทึกข้อมูลได้ </script>");
}
ผลของการ Run
Description
CS1061: 'System.Web.UI.WebControls.FileUpload' does not contain a definition for 'text' and no extension method 'text' accepting a first argument of type 'System.Web.UI.WebControls.FileUpload' could be found (are you missing a using directive or an assembly reference?)Tag : .NET, Ms SQL Server 2005, Web (ASP.NET), C#
Date :
2011-02-03 10:07:38
By :
computer_psu031
View :
1190
Reply :
1
Load balance : Server 01