Posted on: 6/19/2014 2:43:59 AM | Views : 335

hi,
How to do to get file in fileupload at button click,
My code
<asp:FileUpload ID="FileUploadimage" runat="server" />                       <asp:Button ID="btnUpload" runat="server"                           Text="Upload" onclick="btnUpload_Click"  />
 protected void btnUpload_Click(object sender, EventArgs e)         {             if (FileUploadimage.HasFile)           & ...

Go to the complete details ...