I need to allow user to select multiple check box and search using keywords then it will bind all likes to one grid view. how can i do that?
Tried researching for it but can't seems to find a solution, please do help! Your help is appreciated and thank you in advance.
protected void btnSearch_Click(object sender, EventArgs e)
{
// Validate check box
bool isCBChecked = cbTitle.Checked ||
cbBU.Checked ||
cbDept.Checked ||
cbVendor.Checked ||
cbCat.Checked ||
cbCreated.Checked ||
cbTag.Checked;
if (cbTitle.Checked == true)
{
// Call out method to bind data to grid view
this.bindGridViewCT();
// Uncheck the checkbox
cbTitle.Checked = false;
// Display message
l ...
Go to the complete details ...