Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Star
10258 Points
1760 Posts
Aug 08, 2011 08:24 AM|LINK
Do not pass anything to the list page then it would be requesting for all users. If you pass the project id then show the users for the project.
If(Request.QueryString["ProductID"] == null) { //List all users. } else { //Logic to display users specific to the project. }
chandrasheka...
Star
10258 Points
1760 Posts
Re: Filtering NULL Values by URL
Aug 08, 2011 08:24 AM|LINK
Do not pass anything to the list page then it would be requesting for all users. If you pass the project id then show the users for the project.
If(Request.QueryString["ProductID"] == null) { //List all users. } else { //Logic to display users specific to the project. }Please try the answer for the post and finally Don't forget to click “Mark as Answer” on the post that helped you.