protected void EndBtn_Click(object sender, EventArgs e)
        {
            int      winteamid = Int32.Parse(ddlwinteam.SelectedValue);
            int      matchid   = (int)Session["matchid"];
            string   endcom    = taendcom.Text;
            DateTime endtime   = DateTime.Now;

            ServiceRef.LiveScoreServiceClient client = new ServiceRef.LiveScoreServiceClient("BasicHttpBinding_ILiveScoreService");
            client.updateWinner(winteamid, matchid);
            client.updateEndComm(endcom, matchid);
            client.updateEndTime(endtime, matchid);
            client.deleteComm();
            Response.Redirect("scorecard.aspx");
        }
        protected void GoBtn_Click(object sender, EventArgs e)
        {
            ServiceRef.LiveScoreServiceClient client = new ServiceRef.LiveScoreServiceClient("BasicHttpBinding_ILiveScoreService");
            //Update Bowler
            Session["bowler"] = Int32.Parse(ddlfbowl.SelectedValue);

            int matchid = (int)Session["matchid"];

            //Update Innings and Inning Comment
            client.updateInning(2, matchid);
            string incom = tainncom.Text;

            client.updateInningComm(incom, matchid);
            client.deleteComm();
            Response.Redirect("scoreboard.aspx");
        }