Hi ,
I have a asp.net page that displays 4 grids with respect to the user who is logged in.
When the user wants to see the entire set of record he clicks on a button "ShowAll" that should show all the records.
I have written the following code in the button click event that dosent seem to refresh the grids.
Please help
Protected Sub btnShowAll_Click(sender As Object, e As EventArgs) Handles btnShowAll.Click
newParameter = "%"
LoadCompleteElements(strTeamType)
LoadInProgressElements(strTeamType)
LoadReviewElements(strTeamType)
End Sub
' These functions create a SQLcommand with the parameters and populate the grid on page load.
Go to the complete details ...