Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# 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 22nd, 2008, 01:34 PM
Authorized User
 
Join Date: Apr 2008
Posts: 16
Thanks: 1
Thanked 0 Times in 0 Posts
Default Accessing one cell from gridview

Hi,

I have one user list(gridview) and I want to set those users to be active or Inactive from that list. I did all the things , but now I have a problem with the condition.I don't know how to access the cell from the gridview in gvUserList_RowCommand function.



 protected void gvUserList_RowCommand(object sender, GridViewCommandEventArgs e)
        {

            if (e.CommandName.Equals("EditUser"))
            {
                Response.Redirect("~/AddUser.aspx?UserID="+e.CommandArgument);
            }

            else if (e.CommandName.Equals("SetUser"))
            {
                Logins objLogins = new Logins();
                if (??????)
                {
                    objLogins.SetActiveUser(int.Parse(e.CommandArgumen t.ToString()));

                }
                else
                {
                    objLogins.SetInactiveUser(int.Parse(e.CommandArgum ent.ToString()));
                }


            }
        }



Thank you
__________________
Thank you
 
Old May 22nd, 2008, 03:13 PM
samjudson's Avatar
Friend of Wrox
 
Join Date: Aug 2007
Posts: 2,128
Thanks: 1
Thanked 189 Times in 188 Posts
Default

The MSDN documentation provides an example on how to do exactly that:

http://msdn.microsoft.com/en-us/libr...andsource.aspx

/- Sam Judson : Wrox Technical Editor -/





Similar Threads
Thread Thread Starter Forum Replies Last Post
Accessing a cell in a DataGridView Martin Woodhouse C# 2008 aka C# 3.0 12 October 3rd, 2008 08:42 AM
Get GridView Cell Value Based on GridView Column stublair C# 2008 aka C# 3.0 0 September 4th, 2008 08:30 AM
Accessing a Cell in a Webform Datagrid hexOffender VB.NET 2002/2003 Basics 1 December 28th, 2006 01:14 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
Accessing the value of a Cell in Onload event asdasd Javascript 1 February 19th, 2005 04:50 AM





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