Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

repeater controls

Status
Not open for further replies.

jimberger

Programmer
Jul 5, 2001
222
GB
Hi,

How do i populate a textbox within a reperater control

<asp:repeater id="repeaterItems" runat="server">
<itemtemplate>

<asp:textbox id="text" runat="server" Text=<%# DataBinder.Eval(Container.DataItem, "Message")%>" />

</itemtemplate>
</asp:repeater>

this dosent seem to work it says server tage not well formed.

any ideas?

thanks for your help
jim
 
<asp:textbox id="text" runat="server" Text=' <%# DataBinder.Eval(Container.DataItem, "Message")%>' />

"...we both know I'm training to become a cagefighter...see what happens if you try 'n hit me..."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top