Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6208935
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:53:34+00:00 2026-05-24T05:53:34+00:00

I have a repeater trying to get multiple data to display. which includes a

  • 0

I have a repeater trying to get multiple data to display.
which includes a few textboxes which will show the current setting.
take note that this acts like a ‘edit info’ page for multiple images at once.

i also have problem displaying the images from the database.

To make it simple :

my .cs code:

            DataTable ChildImageDT = myImagesBAL.GetChildImageDT(userID, childID, display);
            var userList = new List<Images>();
            foreach (DataRow row in ChildImageDT.Rows)
            {
                var child = new Images()
                {
                                   DateTaken = DateTime.Parse(row["image_taken_dt"].ToString()),
                                   PlaceTaken = row["image_taken_loc"].ToString(),
                                   DetailedInfo = row["image_info"].ToString()
                };
                userList.Add(child);
            }

            Repeater1.DataSource = userList;
            Repeater1.DataBind();

my .aspx code

<asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
    <table class="content_background">
        <tr>
            <td width= "10%">Date Taken:</td>
            <td><asp:TextBox ID="txtName" Text="<%#Eval("DateTaken")%>" Visible="true" runat="server" Height="100px" Width="100px"></asp:TextBox></td>
        </tr>
        <tr>
            <td width= "10%" bgcolor=aqua>Place Taken:</td>
            <td bgcolor=blue ><asp:TextBox ID="txtPassword" Text="<%#Eval("PlaceTaken")%>" Visible=true runat="server" BackColor="White" Font-Size="Large" ForeColor="Fuchsia" Height=50px ></asp:TextBox></td>
        </tr>
        <tr>
            <td width= "10%">Detailed Info:</td>
            <td><asp:TextBox ID="TextBox1" Text="<%#Eval("DetailedInfo")%>" Visible=true runat="server" ></asp:TextBox></td>
        </tr>
    </table>
</ItemTemplate>

my output as shown:

note: that the output is in the “text: ” but the whole text box doesnt appear.
enter image description here

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T05:53:36+00:00Added an answer on May 24, 2026 at 5:53 am

    You might be getting a “The server tag is not well formed.” error.

    Just change your Eval code to single quotes instead of a double quote e.g.

    Text="<%# Eval("DateTaken") %>"  // It's understood as string text
    

    to

    Text='<%# Eval("DateTaken") %>' // now understood as server side code.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following Image control within a repeater. I'm trying to get the
i have a repeater that will output a series of items: <asp:repeater ... runat=Server>
I have a repeater control outputting some HTML. I want a table which outputs
I am trying to put a condition into my ASP repeater tag. I have
I'm trying to display all orders placed and I have a primary accessdatasource control
I m trying to make feed system for my website, in which i have
I'm trying to get IIS6 to work reliably with a WCF service I have
I have a gridview nested within a repeater, and I'm trying to enable paging
I am trying to bind a List<AreaField> to a repeater. I have converted the
I have 3 tables agencytbl, branchtbl and tourtbl. I am trying to get a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.