|
-
September 6th, 2012, 09:25 AM
#1
Image in web user control
Hi
I'm a beginner at this so be patient with me 
Here's my problem:
I have a listview which shows names. Above my listview I have a web user control that has to show a picture of each person in the listview. I don't really know to make it do that...
Any suggestions?
PHP Code:
<%@ Page Title="Home Page" Language="vb" MasterPageFile="~/JazzPeoplePage.master" AutoEventWireup="false"
CodeBehind="Default.aspx.vb" Inherits="JazzPeople.web._Default" %>
<%@ Register src="wucPhoto.ascx" tagname="wucPhoto" tagprefix="uc1" %>
<asp:Content ID="content" runat="server" ContentPlaceHolderID="MainContent">
<uc1:wucPhoto ID="wucFoto1" runat="server" />
<asp:ListView ID="ListView1" runat="server" DataSourceID="ObjectDataSource1">
<ItemTemplate>
<br />
<%#Eval("Name") & " "& Eval("FirstName") %>
<br />
<asp:LinkButton ID="btnAddToFavo" runat="server" Text="Add to favorites" </asp:LinkButton> -
<br />
</ItemTemplate
</asp:ListView>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server"
SelectMethod="GetComposers" TypeName="JazzPeople.BL.Composer">
</asp:ObjectDataSource>
</asp:Content>
Last edited by GremlinSA; September 6th, 2012 at 12:50 PM.
Reason: added code tags
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|