show/hide this revision's text 3 added 33 characters in body; added 36 characters in body

For solve this problem, Please see the following step.

  1. Add ajax-upload to your detail view.
    • Visible iframe
      • iframe-based uploader like Resource#1.
      • Silverlight-based & Flash-based uploader. I like this technique because it doesn't require any server-side script for display current upload status. But in HTML5, you can create this without using any web browser plug-in.
      • Commercial uploader like Resource#2. that use hidden iframe for uploading.
    • Upload file to temporary location.

      • System response the temporary location. Next, client keep temporary location in hidden input in detail form.
      • *Keep temporary location with session_id.* You can store it in database or Session variable depend on your framework.
    • When you click on the save button. System , the system will move file the files to their real location.

Note. System will automatically delete the expired file that expire in from the temporary locationautomatically.

Resource

  1. ASP.NET File Upload with Real-Time Progress Bar
  2. ASP.NET File Upload like GMail (Commercial)
show/hide this revision's text 2 added 959 characters in body; added 11 characters in body

For solve this problem, Please see the following step.

  1. Add ajax-upload to your detail view.
    • Visible iframe uploader like Resource#1.
    • Silverlight-based & Flash-based uploader. I like this technique because it doesn't require any server-side script for display current upload status. But in HTML5, you can create this without using any web browser plug-in.
    • Commercial uploader like Resource#2.
  2. Upload file to temporary location.

    • System response the temporary location. Next, client keep temporary location in hidden input in detail form.
    • *Keep temporary location with session_id.* You can store it in database or Session variable depend on your framework.
  3. When you click save button. System move file to real location.

Note. System delete file that expire in temporary location automatically.

Resource

  1. ASP.NET File Upload with Real-Time Progress Bar
  2. ASP.NET File Upload like GMail (Commercial)
show/hide this revision's text 1