protected void Button4_Click(object sender, EventArgs e)
{
if (upFile.HasFile)
{
upFile.SaveAs(Server.MapPath("upload_file") + @"\" + upFile.FileName);
Label1.Text = "File Uploaded: " + upFile.FileName;
}
else
{
Label1.Text = "No File Uploaded.";
}
this.Button4.Attributes.Add("onclick", "javascript:post_value()");
how can get the value of the the file upload control and send it to a label in a grid
plsss help me