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 July 7th, 2003, 03:52 PM
Registered User
 
Join Date: Jul 2003
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Datagrid functionality without a datasource

I want to dynamically create a grid on an asp.net page. I want to add and delete rows from the grid. I want all the features of a datagrid like sorting and paging. My rows will be added/removed dynamically by a user. I don't need to use a datasource to bind to the grid. Just simply add or remove a row. Does anyone have any sample code on how to do this.

 
Old July 7th, 2003, 11:21 PM
Authorized User
 
Join Date: Jun 2003
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default

On every action on DataGrid (like sort, paging, delete, ...) you must call Databind function to fill rows on DataGrid. On datagrid you MUST use some datasource.
What does it mens "synamically create" ?
If you want dinamically create columns set AutoGenerate property on DataGrid to true.
You can use DataTable created on page like DataSource and when you store it in Session you can use all DataGrid ability. (In this case you can modify Table-add rows, delete rows in session)





Similar Threads
Thread Thread Starter Forum Replies Last Post
datagrid functionality stealthdevil Visual Basic 2005 Basics 0 August 23rd, 2007 09:26 AM
DataTable from DataGrid.DataSource Jamal Junior ASP.NET 2.0 Basics 1 March 24th, 2006 01:51 AM
datasource for dropdown in datagrid msrnivas General .NET 1 August 8th, 2005 08:17 PM
Converting a DataGrid.DataSource to a DataView demivolt ASP.NET 1.0 and 1.1 Professional 10 July 8th, 2005 12:00 PM
DataGrid DataSource is Undefined. ochanarachel Classic ASP Basics 1 February 22nd, 2005 06:10 PM





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