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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T23:28:00+00:00 2026-05-13T23:28:00+00:00

here is my problem: I’ve got a repeater on my asp.net (VB): <asp:Repeater ID=Repeater1

  • 0

here is my problem:

I’ve got a repeater on my asp.net (VB):

<asp:Repeater ID="Repeater1" runat="server">    
<ItemTemplate>
  <asp:Label ID="Label1" runat="server" Text='<%# Eval("Question_Number") %>' /> 
  <%#Eval("Question_Desc")%>

Now what I want to do is, check a value that I haven’t used called “Question_Type” which could be = 1, 2 or 3 depending if it is multiple choice, short answer, etc.

I have tried this:

<%  
if Eval("Question_type") = 1 then

Response.Write(" <asp:RadioButton runat=""server"">test1</asp:RadioButton>")
Response.Write(" <asp:RadioButton runat=""server"">test2</asp:RadioButton>")
Response.Write(" <asp:RadioButton runat=""server"">test3</asp:RadioButton>")

end if
%>

and I get this error:

Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control.

HOW can I use this value in a if statement???

  • 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-13T23:28:01+00:00Added an answer on May 13, 2026 at 11:28 pm

    You are going to need to handle the ItemDataBound event and manually handle the values there.

    Here is how I might approach the problem given this repeater:

    <asp:Repeater ID="Repeater1" runat="server" OnItemDataBound="HandleQuestionType">
        <ItemTemplate>
            <asp:Label ID="Label1" runat="server" Text='<%# Eval("Question_Number") %>' />
            <%#Eval("Question_Desc")%>
            <asp:PlaceHolder ID="phQuestions" runat="server" />
        </ItemTemplate>
    </asp:Repeater>
    

    Here is my event handler for getting the possible answers to a radio button list:

    protected void HandleQuestionType(object sender, RepeaterItemEventArgs e)
    {
        // Execute the following logic for Items and Alternating Items.
        if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
        {
            var question = e.Item.DataItem as Question;
            var placeHolder = e.Item.FindControl("phQuestions") as PlaceHolder;
    
            if(question != null && placeHolder != null)
            {
                if(question.Question_Type == QuestionTypeEnum.MultipleChoice)
                {
                    var radioList = new RadioButtonList
                                        {
                                            DataTextField = "Answer",
                                            DataValueField = "ID",
                                            DataSource = GetPossibleAnswers()
                                        };
    
                    radioList.DataBind();
    
                    placeHolder.Controls.Add(radioList);
                }
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

here my problem, i'm using asp.net for my site, i get a list of
Here the problem. I have my site hosted on a shared hosting for asp.net
here is problem about sum of factorial of digit http://projecteuler.net/index.php?section=problems&id=254 also here is Define
Got a problem here on exiting onclick. The program uses shared preferences to get
Here's the problem: In C# I'm getting information from a legacy ACCESS database. .NET
Here is problem I'm trying to solve. It's for logistics company. I got all
Odd problem here. Working with an existing system that uses TinyMCE as it's text
Unusual problem here: I have an app that uses a text file which contains
Strange problem here... UPDATE After adding a lot more server side debugging, I found
I've got problem here which I couldn't solve by myself. Everything was okay before,

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.