Click here to Skip to main content
15,891,253 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
<ItemTemplate>
           <li> <asp:Label ID="Label3" runat="server" Text='<%#Eval("Propertyname")%>'></asp:Label><br />
              <asp:Label ID="Label9" runat="server" Text='<%#Eval("PropertyType")%>'></asp:Label><br />
                <asp:Label ID="Label10" runat="server" Text='<%#Eval("AdvanceAmount")%>'></asp:Label><br />
                  <asp:Label ID="Label29" runat="server" Text='<%#Eval("Parking")%>'></asp:Label><br />
                    <asp:Label ID="Label30" runat="server" Text='<%#Eval("Furnished")%>'></asp:Label><br />
                      <asp:Label ID="Label31" runat="server" Text='<%#Eval("Description")%>'></asp:Label><br />
                       <%-- <asp:Label ID="Label32" runat="server" Text='<%# "Getimages.aspx?Id=" + Eval("Id")%>'></asp:Label><br />--%>
            <asp:Image ID="Image1" runat="server" ImageUrl='<%#"~/Getimages.aspx?Id/=" + Eval("Id")%>' /><br />
               <%--<asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%#"~/Getimages.aspx?Id=" + Eval("Id") %>'>HyperLink</asp:HyperLink>--%>
            <%-- <img src='<%# Eval("Image")%>' alt="01" />--%>
                  <asp:Label ID="Label16" runat="server" Text='<%#Eval("Rent_Month")%>'></asp:Label></li>

        </ItemTemplate>




here Image url not transfer to other page? anything wrong ?
Posted
Comments
[no name] 19-May-12 10:04am    
What do you mean URL not transferred to other page? What URL? Have you debugged?
deepureddy18 21-May-12 0:14am    
check image tag there is an Image url Getimages.aspx it is the another page.
deepureddy18 26-May-12 6:32am    
i got the solution. dont take aspx page ....instead of aspx page take ashx page ..

1 solution

Please use following

ASP.NET
<asp:image id="Image1" runat="server" imageurl="<%# Eval("Image")%>"  />


Thanks,
Imdadhusen
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900