first off... sorry this is probably a stupid question but i cant find the info i need.
C# Web project created in VS 2003
Two list boxes, the first one has a list of groups (lstgroups) from the AD which works fine, when one is selected i would like it to list the members of the group in the second listbox (lstusers). I created the code and tossed it under the correct event (did the properties of lstgroups, methods, double clicked the SelectedIndexChanged and it creates the function) tossed my code in there and loaded the page. it lists the groups, i select one, doesnt update. I tossed this code in a button and it works great.
what am i missing?
Sorry, Thanks
Justin
Answers (2)
0
what is the access modifier of your GetProducts() method? Make sure it's public and not protected.
0
I re did it. All is ok but it shows error for GridView1.DataSource = productsAdapter.GetProducts();
It says GetProducts () is not accessible. I have added the method GetProducts () in TypedDataset but it doesn't work.
0
You may need to recreate your web form again and grab a new GridView control from the toolbox. This could sometimes happen if you directly copy and pasted codes/html in your code behind in which the designer cannot register the controls for you.
So try generate back your page and then step back through the article you referred.
0
Yes I did use the ID GridView1 in aspx.cs but still it's showing the same error . Also I did what u suggested but now the method GetProducts() shows error and says it is not accessible due to protection level.
0
In the first error make sure that you have a GridView control in your ASPX.CS file with ID "GridView1"
In your second error make sure that you declare the namespace where the ProductTableAdapter class was defined. Or simply use the fully qualified name like NameSpaceName.ProductTableAdapater
0
Thank you for answering. The errors are:
The name GridView1 doesn't contain in the current context. And ProductTableAdapter is missing a namespace.
0
What's the actual error you get?
Typed DataSets are kinda obsolete and since you are new to ASP.NET I would suggest you to take a look at Entity Framework instead as your Data Access mechanism.
http://geekswithblogs.net/dotNETvinz/archive/2011/04/04/entity-framework----inserting-data-to-database.aspx
And if I may add. Start learning MVC instead of WebForms :)