seafordcrownfc
12-18-2007, 07:03 AM
Really wasn't sure which room this should go in, so I went for general.
http://i178.photobucket.com/albums/w268/seafordcrownfc/eg1.jpg
Basically I want the information shown underneath the picture to be on the right hand side of the picture as opposed to underneath it. I'm not too sure how to do this though. Below is my HTML/ASP.Net.
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:Repeater id="rptProfile" runat="server" DataSourceID="AccessDataSource1">
<ItemTemplate>
<div class="pageTitle">
<%# Eval("playername") %>
</div>
<div class="pageBody">
<asp:Image ID="imgplayer" runat="server" ImageUrl='<%# Eval("picture") %>' />
</div>
<div class="pageBody">
DOB : <%# Eval("dob") %>
<br />
Position : <%# Eval("favouriteposition") %>
<br />
Joined Club : <%# Eval("joinedclub") %>
<br />
Left Club : <%# Eval ("leftclub") %>
<br />
<%# Eval ("profile") %>
</div>
</ItemTemplate>
</asp:Repeater>
<asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/stfc.mdb"
SelectCommand="SELECT [playername], [nickname], [dob], [favouriteposition], [joinedclub], [leftclub], [profile], [picture] FROM [player] where [playerID] = @playerID">
<SelectParameters>
<asp:QueryStringParameter Name="playerID" QueryStringField="playerID" />
</SelectParameters>
</asp:AccessDataSource>
</asp:Content>
Thanks in advance
http://i178.photobucket.com/albums/w268/seafordcrownfc/eg1.jpg
Basically I want the information shown underneath the picture to be on the right hand side of the picture as opposed to underneath it. I'm not too sure how to do this though. Below is my HTML/ASP.Net.
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:Repeater id="rptProfile" runat="server" DataSourceID="AccessDataSource1">
<ItemTemplate>
<div class="pageTitle">
<%# Eval("playername") %>
</div>
<div class="pageBody">
<asp:Image ID="imgplayer" runat="server" ImageUrl='<%# Eval("picture") %>' />
</div>
<div class="pageBody">
DOB : <%# Eval("dob") %>
<br />
Position : <%# Eval("favouriteposition") %>
<br />
Joined Club : <%# Eval("joinedclub") %>
<br />
Left Club : <%# Eval ("leftclub") %>
<br />
<%# Eval ("profile") %>
</div>
</ItemTemplate>
</asp:Repeater>
<asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/stfc.mdb"
SelectCommand="SELECT [playername], [nickname], [dob], [favouriteposition], [joinedclub], [leftclub], [profile], [picture] FROM [player] where [playerID] = @playerID">
<SelectParameters>
<asp:QueryStringParameter Name="playerID" QueryStringField="playerID" />
</SelectParameters>
</asp:AccessDataSource>
</asp:Content>
Thanks in advance