Example of Image Upload

Questions about wxWidgets running on MS.NET, mono or Portable.NET ? Ask it here !
Post Reply
hanusoft
In need of some credit
In need of some credit
Posts: 5
Joined: Fri Sep 14, 2007 6:33 am
Contact:

Example of Image Upload

Post by hanusoft »

Here we are uploading images in File System and storing path in the database.

Code (ImageUpload.aspx.cs) :-
private void Button1_Click(object sender, System.EventArgs e)
{
// Here I am uploading images in Images folder of C drive.
int intResult=0;
string strPath = @"c:\Images\"+Path.GetFileName(File1.PostedFile.FileName);
SqlConnection con = new SqlConnection("server=.;uid=sa;database=pubs;pwd=");
SqlCommand com = new SqlCommand("Insert into Category(name,imagepath) values(@name,@imagepath)",con);
com.Parameters.Add("@name",TextBox1.Text);
com.Parameters.Add("@imagepath",strPath);
con.Open();
intResult = Convert.ToInt32(com.ExecuteNonQuery());
if(intResult != 0)
{
File1.PostedFile.SaveAs(strPath);
Response.Write("Record Inserted.");
}
}
shepss

Post by shepss »

that's the best way to mention it in your CV resume, if you are a developer
Post Reply