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

  • Home
  • SEARCH
  • 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 1092721
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T23:43:32+00:00 2026-05-16T23:43:32+00:00

How can i access code behind methods from the radiobuttonlist insode the gridview below?

  • 0

How can i access code behind methods from the radiobuttonlist insode the gridview below? Using code blocks is of some reason not allowed here..


<asp:GridView ID="gvChildren" runat="server" DataKeyField="ID">
<Columns>
<asp:TemplateField>
<ItemTemplate>

<asp:RadioButtonList runat="server" ID="rblAccess">
<asp:ListItem Value="0" Text="<%= Get("test") %>"></asp:ListItem>
<asp:ListItem Value="1" Text="<%= Get("test") %>">dfgdfg</asp:ListItem>
<asp:ListItem Value="2" Text="<%= Get("test") %>"></asp:ListItem>
</asp:RadioButtonList>

</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>

  • 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-16T23:43:32+00:00Added an answer on May 16, 2026 at 11:43 pm

    I think this is not possible(Databinding expressions are only supported on objects that have a DataBinding event). You could set the Text in codebehind.
    For example:

    <asp:RadioButtonList runat="server" ID="rblAccess">
    <asp:ListItem Value="0" ></asp:ListItem>
    <asp:ListItem Value="1" ></asp:ListItem>
    <asp:ListItem Value="2" ></asp:ListItem>
    </asp:RadioButtonList>
    

    Codebehind:

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If Not Page.IsPostBack Then
            Me.rblAccess.DataBind()
        End If
    End Sub
    
    Private Sub rblAccess_DataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles rblAccess.DataBound
        For Each item As ListItem In rblAccess.Items
            item.Text = getAccessText(item.Value)
        Next
    End Sub
    
    Private Function getAccessText(ByVal value As String) As String
        Return "text for item " & value
    End Function
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When using ASP.Net routing, how can you get the RouteData from the code-behind? I
How can this code compile? The code below in the operator int CAN access
I'm using Spring Security 3.0.7 How can I get with java code the access
In a regular .aspx page, you can access public properties from the codebehind. Is
With CLLocationManager I can use the following code to determine if I can access
Is there an easy way to write C code that can access its Git
I can't understand why this code is throwing exception of Bad Access: - (void)viewDidLoad
according to this code if i want to access imageView1 and imageView2 how can
I can access Spring beans in my Servlets using WebApplicationContext springContext = WebApplicationContextUtils.getWebApplicationContext(getServletContext()); in
This is the code-behind of my view: using System.Windows.Controls; namespace TestBoundTabControl.Views { public partial

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.