Reputation: 55
I am trying to create a project in c# , I want to upload images in to database if its size is <150 kb . How to set the limitation for uploading images? I don't know how to expand it ? please help thanks in advance
private void Browsebutton3_Click(object sender, EventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = "images only.|*.jpg; *.jpeg; *.png";
DialogResult dr = ofd.ShowDialog();
pictureBox1.Image = Image.FromFile(ofd.FileName);
//pictureBox1.SizeMode = PictureBoxSizeMode.CenterImage;
textBox5.Text = ofd.FileName;
}
Upvotes: 5
Views: 767