↧
Re: Strongly Typed Dataset and Gridview: Problem
How to call a stored procedure that is not concerned with a particular table. Is there a way to call it alone using the typed datasets to assign the datasource to the gridview using stored procedure
View ArticleRe: Strongly Typed Dataset and Gridview: Problem
Did you mean you can't get any data when retrieving data via typed dataset? To get data from two tables, I recommend to write a joined stored procedure in database since joined query isn't supported in...
View ArticleRe: Strongly Typed Dataset and Gridview: Problem
Have you set the EmptyDataText property of your GridView?
View ArticleStrongly Typed Dataset and Gridview: Problem
I am trying to populate a gridview using two tables. I also have a strongly typed dataset and used the method on this page:http://www.asp.net/data-access/tutorials/creating-a-data-access-layer-vbthe...
View Article