Wrox Programmer Forums
Go Back   Wrox Programmer Forums > .NET > .NET 1.0 and Visual Studio.NET > VS.NET 2002/2003
|
VS.NET 2002/2003 Discussions about the Visual Studio.NET programming environment, the 2002 (1.0) and 2003 (1.1). ** Please don't post code questions here ** For issues specific to a particular language in .NET, please see the other forum categories.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the VS.NET 2002/2003 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 November 12th, 2003, 12:39 AM
Authorized User
 
Join Date: Nov 2003
Posts: 26
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to koneruvijay
Default Adding Hyperlink or Button to DataGrid

Folks,

      How can we add a button or a linklabel to the datagrid Dynamically by placing a separate column for that.For example i want to delete that row so for that i want to add a column which contains only button delete in the entire column and we have to add dynamically to all the rows displayed in the datagrid.Can any one help me.

Regards
Chanti

 
Old November 12th, 2003, 12:39 PM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

You need to add a button column to your datagrid columns collection. Specify the command name as "Delete", then you can use the datagrid's DeleteCommand event to handle it.

<asp:ButtonColumn
    HeaderText="Delete"
    ButtonType="PushButton"
    Text="Delete"
    CommandName="Delete" />

Look here for more details:
http://msdn.microsoft.com/library/de...mmandtopic.asp

Peter
------------------------------------------------------
Work smarter, not harder.
 
Old November 12th, 2003, 11:47 PM
Authorized User
 
Join Date: Nov 2003
Posts: 26
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to koneruvijay
Default

Dear Planoie,

       What i am asking is about windows forms datagrid.

 
Old November 13th, 2003, 12:55 AM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

Sorry about that. Once again, I didn't notice the main forum subject.

Peter
------------------------------------------------------
Work smarter, not harder.





Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding new row, hyperlink and sheet with a button Shaolin1976 Excel VBA 0 May 8th, 2008 09:01 AM
adding varchar string to hyperlink dgreep PHP Databases 1 February 19th, 2007 05:56 AM
Hyperlink n Link Button hoailing22 ASP.NET 1.0 and 1.1 Basics 2 May 23rd, 2005 07:26 PM
Datagrid Button/Hyperlink Column snowydust VB How-To 0 September 6th, 2004 02:14 AM
Adding a button to each row of a datagrid badgolfer ASP.NET 1.0 and 1.1 Basics 1 March 1st, 2004 10:05 AM





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