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 6217663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T07:27:57+00:00 2026-05-24T07:27:57+00:00

Is it possible to have several <%# Eval(something)%> statements in one control, and if

  • 0

Is it possible to have several <%# Eval(“something”)%> statements in one control, and if so, what am i doing wrong?

i’m trying to add hyperlinks to a datalist, where the navigateurl and text are retrived from a datatable i use use as datasource.

this is how i make my datatable

foreach (Google.GData.Calendar.EventEntry ev in calFeed.Entries)
        {
            ExtensionCollection<When> v = ev.Times;
            DataRow Title = dt.NewRow();
            DataRow url = dt.NewRow();

            Title["title"] = ev.Title.Text;
            url["url"] = ev.Content.Content;
            dt.Rows.Add(Title);
            dt.Rows.Add(url);
            dt.AcceptChanges();
        }

this is my html

<asp:DataList ID="DataList1" runat="server">
    <ItemTemplate>
        <asp:HyperLink NavigateUrl='<%# Eval("url")%>' runat="server" Text=<%# Eval("title")%> />
    </ItemTemplate>
</asp:DataList>

now if i eval title in both fields they are shown, but if i chose two different like title and url, only one is evaluated, and the other is left blank.

  • 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-24T07:27:58+00:00Added an answer on May 24, 2026 at 7:27 am

    You are creating two rows, in your code. Create just one row in your code and then add it:

    foreach (Google.GData.Calendar.EventEntry ev in calFeed.Entries)
            {
                ExtensionCollection<When> v = ev.Times;
                DataRow dr = dt.NewRow();
    
                dr["title"] = ev.Title.Text;
                dr["url"] = ev.Content.Content;
                dt.Rows.Add(dr);
                dt.AcceptChanges();
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to have several consumers listening on a single MSMQ instance and
I am wondering if it is possible in ExtJS to have several values of
I have read in several places that it's possible to share the objects directory
I'm curious if it's possible to take several conditional functions and create one function
I have several absolute positioned elements. Is it possible to get all elements with
I have several rich join models and I was wondering if it was possible
I have several rake tasks combined into one rake command. Just wondering is it
I have several divs within a larger divs. Is it possible to position all
I have several one-line binding already written and I'd like to keep it that
We have several tables with foreign keys. I've checked their CREATE statements, and there

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.