Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Professional
|
ASP.NET 2.0 Professional If you are an experienced ASP.NET programmer, this is the forum for your 2.0 questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 30th, 2008, 04:29 AM
Friend of Wrox
 
Join Date: Apr 2006
Posts: 160
Thanks: 0
Thanked 0 Times in 0 Posts
Default how to change value of radiobuttonlist in gridview

Hi,

The gridview contains a radiobuttonlist with boolean values (true/false) coming from a database. In normal mode, 'True' or 'False' is dispalyed. In edit mode, the radiobuttonlist appears.

What i want is to change True' and 'False' by 'Yes' and 'No' in normal mode.

I tried this code below and i get Yes/No in normal mode, but also in edit mode instead of the radiobuttonlist which has gone ...

Thanks for help

Hertendreef


<asp:TemplateField>
 <EditItemTemplate>
 <asp:RadioButtonList ID="r1" SelectedValue='<%# Bind("myfield") %>'
runat="server">
 </asp:RadioButtonList>
 </EditItemTemplate>
 <ItemTemplate>
 <asp:Label ID="Label31" runat="server" Text='<%# Bind("myfield")
%>'></asp:Label>
 </ItemTemplate>
 </asp:TemplateField>


Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles
GridView1.RowDataBound
        If (e.Row.RowState And DataControlRowState.Normal) = DataControlRowState.Normal Then
            If e.Row.RowType = DataControlRowType.DataRow Then
                Dim st As String
                st = e.Row.Cells(5).Text
                If st = "True" Then
                    e.Row.Cells(5).Text = "Yes"
                Else
                    e.Row.Cells(5).Text = "No"
                End If
            End If
            End If
    End Sub







Similar Threads
Thread Thread Starter Forum Replies Last Post
Urgent:Gridview Change Colour ashvinm ASP.NET 2.0 Basics 1 March 4th, 2008 09:19 AM
RadioButtonList sumith ASP.NET 2.0 Basics 0 October 2nd, 2007 11:30 PM
Change value in GridView Cell Sheraz Khan ASP.NET 2.0 Professional 2 August 30th, 2007 11:12 AM
Change a value in Gridview markatwork ASP.NET 2.0 Basics 1 June 26th, 2007 01:34 AM
How to change the value of one cell in a GridView? [email protected] ASP.NET 2.0 Basics 8 November 19th, 2006 01:12 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.