Hi,
i am doing one placement automation system that should be submitted before next week, i am facing problem with multiple selection of checkbox list, here in code after running if i select one selection with other specific conditions in textbox it works well
by displaying data on grid view, But Once i select multiple selections from checkbox list and after specifying conditions in textbox it should be used to retrieve data from mysql database but it is not showing any thing.So please help to resolve
this as early as possible..
Thank you,
GridViewStudentList.aspx
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using MySql.Data.MySqlClient;
namespace studentPlnt
{
public partial class GridViewStudentList : System.Web.UI.Page
{
string myConnection = "datasource=localhost;po ...
Go to the complete details ...