Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4620992
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:38:12+00:00 2026-05-22T02:38:12+00:00

I need to add a column with a file upload control to my grid

  • 0

I need to add a column with a file upload control to my grid view so that I can upload files against any particular row. Is it possible to do this, ideally I need to be able to do this without putting the gridview into it’s edit state.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T02:38:12+00:00Added an answer on May 22, 2026 at 2:38 am

    You can use this within the as follows:

       <asp:TemplateField HeaderText="UploadImage">
    
       <ItemTemplate>
    
          <asp:Image ImageUrl="~/images/1.jpg" runat="server" ID="image" /> // shown only when not in edit mode
    
        </ItemTemplate>
    
       <EditItemTemplate>
    
           <asp:FileUpload ID="FileUpload1" runat="server" /> // shown only in edit mode
    
       </EditItemTemplate>
    
      </asp:TemplateField>
    

    At last include a as follows to enter edit mode.

           <asp:commandField showEditButton="true" showCancelButton="true"> 
    

    Then add two events as follows:

       protected void GridView1_RowEditing(object sender, GridViewUpdateEventArgs e)
       { 
           gvwID.EditIndex=e.NewEditIndex;
           BindGrid();
       }   
    
        protected void GridView1_RowCancelEdit(object sender, GridViewUpdateEventArgs e)
        {  
              gvwID.EditIndex=-1;
               BindGrid();             
        }   
    

    The FileUpload control, will not automatically save the uploaded file. To save the file you need to use the FileUpload control’s SaveAs method. Before you can use the SaveAs method you need to get the instance of the FileUpload control for the row you are editing. To get the instance of the control you can hook up to the GridView’s RowUpdating event. The following code will get the instance of the FileUpload control and save the uploaded file:

       protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
       {
    
           int RowID=Convert.ToInt32(gvwID.DataKeys[e.RowIndex].value);
    
           FileUpload fileUpload = GridView1.Rows[e.RowIndex].FindControl("FileUpload1") as   FileUpload; 
    
         if(fileUpload.HasFile)
         {
    
           fileUpload.SaveAs(System.IO.Path.Combine(Server.MapPath("Images"), fileUpload.FileName)); 
    
            //update db using the name of the file corresponding to RowID
          }
    
           gvwID.EditIndex=-1;
           BindGrid();
    
        }
    

    Hope this will help…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to add functionality in my program so that any file imported it
I need to add a specific column if it does not exist. I have
Often we need to add a non-nullable column to a table, and it is
I've created a page where our partners can upload excel files with statistics using
i need to read files that look like this into a datatable: A02 BLANK031
I have csv files with the same headers (first row and first column contain
I have a SQL query (MS Access) and I need to add two columns,
I need to add a web part zone to a wiki page. I'm opening
I need to add DVD writing functionality to an application I'm working on. However
I need to add role based permissions to my Rails application, and am wondering

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.