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

  • Home
  • SEARCH
  • 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 540507
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T10:14:50+00:00 2026-05-13T10:14:50+00:00

this my code in my user control’s designer file <%@ Control Language=C# AutoEventWireup=true CodeBehind=ucImageList.ascx.cs

  • 0

this my code in my user control’s designer file

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ucImageList.ascx.cs"
    Inherits="Pariwaar.UserControl.ucImageList" %>
<asp:ScriptManagerProxy ID="ajaxScriptManagerProxy" runat="server">
</asp:ScriptManagerProxy>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Always">
    <ContentTemplate>
        <asp:HiddenField ID="hidUserId" runat="server" />
        <asp:HiddenField ID="hidAlbumId" runat="server" />
        <table>
            <tr>
                <td>
                    <asp:FileUpload ID="fvUploadFile" runat="server" EnableViewState="true" />
                    &nbsp;
                    <asp:LinkButton ID="AddImageInfoButton" CssClass="blueLink" runat="server" Text="Upload"
                        OnClick="AddImageInfoButton_Click"></asp:LinkButton>
                </td>
            </tr>
            <tr>
                <td>
                    <asp:DataList ID="DtLstImageList" runat="server" DataSourceID="odsImageList" OnItemCommand="DtLstImageList_ItemCommand"
                        EnableTheming="true" RepeatColumns="4" RepeatDirection="Horizontal">
                        <ItemTemplate>
                            <ul>
                                <li style="display: block; text-align: center;">
                                    <asp:ImageButton ID="ImgBtnImagePath" runat="server" ImageUrl='<%# DataBinder.Eval(Container.DataItem, "ImagePath")%>'
                                        ImageAlign="Middle" Width="100" Height="100" CommandName="ViewImage" CommandArgument='<%# DataBinder.Eval(Container.DataItem, "ImageId")%>' />
                                </li>
                                <li style="display: block;">
                                    <asp:Button ID="UpdateCoverPageImage" runat="server" Text="Set as Cover Page" CssClass="inputButtonWithoutpadding"
                                        CommandName="SetAsCoverPage" CommandArgument='<%# DataBinder.Eval(Container.DataItem, "ImageId")%>' />
                                </li>
                            </ul>
                        </ItemTemplate>
                    </asp:DataList>
                </td>
            </tr>
        </table>
    </ContentTemplate>
</asp:UpdatePanel>
<asp:ObjectDataSource ID="odsImageList" runat="server" SelectMethod="GetImageInfo"
    TypeName="Pariwaar.Controller.GallaryHandler" DeleteMethod="DeleteImageInfo">
    <DeleteParameters>
        <asp:Parameter Name="ImageId" Type="Int64" />
    </DeleteParameters>
    <SelectParameters>
        <asp:Parameter DefaultValue="0" Name="ImageId" Type="Int64" />
        <asp:ControlParameter ControlID="hidAlbumId" Name="AlbumId" PropertyName="Value"
            Type="Int64" DefaultValue="0" />
    </SelectParameters>
</asp:ObjectDataSource>

i am not getting Fiepath/name and Fileupload controls’ posted file property is null
i am checking fvFileUpload.Postedfile in click event of AddImageInfoButton

can anybody please tell me what i am doing wrong in this code…
-thanks in advance

  • 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-13T10:14:51+00:00Added an answer on May 13, 2026 at 10:14 am

    File uploads are not supported in async postbacks, such as when you use the UpdatePanel. Read this blog post for more details.

    Here are two proposed workarounds:

    1. Have a dedicated “Upload” button that does a regular postback instead of an async postback. You can achieve this using several techniques: Have the button be outside all UpdatePanels; have the button be the target of an UpdatePanel’s PostBackTrigger; or call ScriptManager.RegisterPostBackControl() on it.
    2. Have a dedicated file upload page that doesn’t have any UpdatePanels. Many web sites already do this anyway.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 298k
  • Answers 298k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I finally managed this via the following snippet: finalHandler =… May 13, 2026 at 7:35 pm
  • Editorial Team
    Editorial Team added an answer You can define MinHeight and MinWidth properties on your ViewModel… May 13, 2026 at 7:35 pm
  • Editorial Team
    Editorial Team added an answer You can't change se separator. It is hard-coded into Rails.… May 13, 2026 at 7:35 pm

Related Questions

FxCop is complaining about a event handler declaration I have. I don't see what
I am trying to determine why an asp.net grid view is so horribly slow.
I can inherit and enhance the ToolBar class by creating a plain C# class,
I have extended a server control (not a user control) and put the code
In my code I load a user control (uc) in the page_load event. The

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.