I havnt a lot of experience with repeater controls but basically what im tryin to do is to place data into a number of text boxes. the information is loaded from the database and will change every time the repeater is reloaded. i have all that part working but my problem is how do i place the data into the text box
this is inside the repeater
<asp:TextBox runat="server" ID="txtTitle" Width="200px"></asp:TextBox>
i was hoping it would just be
<asp:TextBox runat="server" ID="txtTitle" Width="200px" text=<%#Eval("D VDTitle")%>></asp:TextBox>
any one know how its done
this is inside the repeater
<asp:TextBox runat="server" ID="txtTitle" Width="200px"></asp:TextBox>
i was hoping it would just be
<asp:TextBox runat="server" ID="txtTitle" Width="200px" text=<%#Eval("D VDTitle")%>></asp:TextBox>
any one know how its done
Comment