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 4013422
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T09:22:09+00:00 2026-05-20T09:22:09+00:00

Currently in my webpage i load images to the ListView object as follows… <ContentTemplate>

  • 0

Currently in my webpage i load images to the ListView object as follows…

 <ContentTemplate>
            <asp:ListView ID="ListView1" runat="server">
                <layouttemplate>
                    <asp:PlaceHolder id="itemPlaceholder" runat="server" />
                </layouttemplate>
                <ItemTemplate>
                        <td>
                            <asp:Image ID="Image1" runat="server"  
                    ImageUrl = '<%# DataBinder.Eval(Container.DataItem, "Image") %>' />
                        </td>
                    </tr>
                </ItemTemplate>
            </asp:ListView>
 </ContentTemplate>

Now, i would like to use a combination of a Generic Handler and the ListView object to serve the images into the ListView

…the generic handler call is like

~/Handlers/Image.ashx?img=

How could i combine both above to serve images?

I tried something like the following but it is not correct

<asp:Image ID="Image1" runat="server"  
                        ImageUrl = ~/Handlers/Image.ashx?img= & '<%# DataBinder.Eval(Container.DataItem, "Image") %>' />

So what is the correct way?

  • 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-20T09:22:10+00:00Added an answer on May 20, 2026 at 9:22 am

    Yes that is the correct way. Your syntax for binding the ImageUrl not correct though.
    Try this one:

    <asp:Image ID="Image1" runat="server" ImageUrl ='<%# "~/Handlers/Image.ashx?img=" + Eval("Image")%>' />
    

    You might also use the ItemDataBound event to use code like this:

    Image image1 = e.FindControl("Image1") as Image;
    YourClass item = e.DataItem as YourClass;
    image1.ImageUrl = String.Format("~/Handlers/Image.ashx?img={0}", item.Image")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My webpage currently looks like this: <asp:Table runat=server style=position: absolute; left: 0%; top: 82%;
I am currently using a webview to load a webpage which contains lots of
asp.net c# Our webpage currently contains a rather large web app which causes a
I'm currently using this piece of code to load news feeds to my webpage
I am currently developing a asp.net webpage and a WCF publish subscribe service. The
I am currently trying to create a custom server control in asp.net c# and
I am currently developing a webpage where I want to use the ToggleClass function
I currently have Google Maps integrated into my webpage. It is being used to
I'm currently working in an application that has to navigate a webpage and recollect
I am currently using javascript to implement a javascript scroller on my webpage. However,

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.