I have combed thru all my code, can't seem to find where this code error: CS1002: ; expected - says I'm missing a closing semi-colon , could it be the querystring not being noticed???? :
////////////////
public partial class _Default : System.Web.UI.Page
{
void Page_Load(object sender,EventArgs e)
{
if(!Page.IsPostBack)
{
BindData();
}
}
void BindData()
{
String qteam = Request.QueryString["team"];
/// to the first gvStandings
SqlConnection objConn = new SqlConnection();
SqlCommand objCmd = new SqlCommand();
SqlDataAdapter dtAdapter = new SqlDataAdapter();
DataSet ds = new DataSet();
String strCo ...
Go to the complete details ...