Wrox Programmer Forums
|
ASP.NET 1.0 and 1.1 Basics ASP.NET discussion for users new to coding in ASP.NET 1.0 or 1.1. NOT for the older "classic" ASP 3 or the newer ASP.NET 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.0 and 1.1 Basics 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 7th, 2005, 05:55 PM
Authorized User
 
Join Date: Aug 2005
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Default Is this code correct for a Dataview

Hello all,

I am trying to get the hang of making Dataviews. But it is not working for me. Could you tell me if the code below has something wrong with it and what it is. I want to make 2 dataviews based on the same Table from my database.


Dim ds as new Dataset()
Dim dTable as New DataTable()

Dim DataView1 as New Dataview(dTable)
Dataview1.Sort ="JokeID DESC"
Dataview1.Rowfilter="Category = Animals TOP 5"

DataGrid1.DataSource= ds.Tables("dTable").dataview1
DataGrid1.Datbind()

Dim DataView2 as New Dataview(dTable)
Dataview2.Sort ="JokeID DESC"
Dataview2.Rowfilter="Category = Office TOP 5"

DataGrid2.DataSource= ds.Tables("dTable").dataview2
DataGrid2.Datbind()

Thanks for your help. I appreciate it a lot.

Ray






Similar Threads
Thread Thread Starter Forum Replies Last Post
dataview Yasho VB.NET 2002/2003 Basics 1 May 28th, 2007 03:40 AM
Help with DataReader/Dataview? saf ASP.NET 2.0 Basics 4 December 14th, 2006 01:01 PM
Dataview bug? or code error.. nyar C# 1 November 20th, 2006 03:03 PM
Correct code stefanocinfo BOOK: Professional PHP 5 ISBN: 978-0-7645-7282-1 2 October 4th, 2006 03:06 AM
DataView vivi C# 4 November 10th, 2003 01:15 AM





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