Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

My Repeater below looks great in the designer; however, when i fire the application up it does not show the sepperators lins..

 

What can i do to expose the sepperators lines??

 

Thanks,

 

Erik

 

 

 

 

<ItemTemplate>

<table style="BORDER-RIGHT: #66cccc 2px Dotted; PADDING-RIGHT: 10px; BORDER-TOP: #66cccc 2px Dotted; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; BORDER-LEFT: #66cccc 2px Dotted; PADDING-TOP: 10px; BORDER-BOTTOM: #66cccc 2px Dotted">

<tr>

<td><span style="FONT-SIZE: 9pt; COLOR: black; DIRECTION: ltr; FONT-FAMILY: Arial, Tahoma"

style="">

<%# DataBinder.Eval(Container.DataItem, "BulletOne") %>

</span>

</td>

</tr>

<tr>

<td><span style="FONT-SIZE: 9pt; COLOR: black; DIRECTION: ltr; FONT-FAMILY: Arial, Tahoma">

<%# DataBinder.Eval(Container.DataItem, "BulletTwo") %>

</span>

</td>

</tr>

<tr>

<td><span style="FONT-SIZE: 9pt; COLOR: black; DIRECTION: ltr; FONT-FAMILY: Arial, Tahoma">

<%# DataBinder.Eval(Container.DataItem, "BulletThree") %>

</span>

</td>

</tr>

<tr>

<td><span style="FONT-SIZE: 9pt; COLOR: black; DIRECTION: ltr; FONT-FAMILY: Arial, Tahoma">

<%# DataBinder.Eval(Container.DataItem, "BulletFour") %>

</span>

</td>

</tr>

<tr>

<td><span style="FONT-SIZE: 9pt; COLOR: black; DIRECTION: ltr; FONT-FAMILY: Arial, Tahoma">

<%# DataBinder.Eval(Container.DataItem, "BulletFive") %>

</span>

</td>

</tr>

<tr>

<td><span style="FONT-SIZE: 9pt; COLOR: black; DIRECTION: ltr; FONT-FAMILY: Arial, Tahoma">

<%# DataBinder.Eval(Container.DataItem, "BulletSix") %>

</span>

</td>

</tr>

<tr>

<td><span style="FONT-SIZE: 9pt; COLOR: black; DIRECTION: ltr; FONT-FAMILY: Arial, Tahoma">

<%# DataBinder.Eval(Container.DataItem, "BulletSeven") %>

</span>

</td>

</tr>

<tr>

<td><span style="FONT-SIZE: 9pt; COLOR: black; DIRECTION: ltr; FONT-FAMILY: Arial, Tahoma">

<%# DataBinder.Eval(Container.DataItem, "BulletEight") %>

</span>

</td>

</tr>

<tr>

<td><span style="FONT-SIZE: 9pt; COLOR: black; DIRECTION: ltr; FONT-FAMILY: Arial, Tahoma">

</span>

<%# DataBinder.Eval(Container.DataItem, "BulletNine") %>

</td>

</tr>

</table>

</ItemTemplate>

<SeparatorTemplate>

<tr>

<td colspan="6" style="BACKGROUND-COLOR: #ff99ff"><hr color="#FF99FF" />

</td>

</tr>

</SeparatorTemplate>

</asp:Repeater>

Posted

what does your header and footer template look like? You are repeating whole tables as your items, seperated by table rows only

 

<table>...</table>

 

<tr><td>..</td></tr>

 

<table>...</table>

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...