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 have a table of data that I need to dynamically add a column
I need to add a NOT NULL column to an existing (populated) table that
I need to add thinking-sphinx delta column in my table that is having 17Million
I need to add an image/icon to the last column in the row. And
How can I make an Database Model edmx file that would let me add
I need to add a new column to a MS SQL 2005 database with
I need to add default value column in SqlServer Compact....i am new to this
I need add Auto complete on apex Tabular Form. there is a column as
With df <- data.frame(v1=c(1:5), v2=c(9,32,6,17,11)) I need to add a new column v3 with

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.