Ejemplo n.º 1
0
    private void bindGridView( )
    {
        gcamws.GCAMSoapClient gcam = new gcamws.GCAMSoapClient();
        DataSet ds = gcam.query_Gcam(cmbRegion.Text, cmbSector.Text, cmbTechno.Text);

        GridView1.DataSource = ds;
        GridView1.DataBind();
    }
Ejemplo n.º 2
0
    protected void cmdRun2_Click(object sender, EventArgs e)
    {
        gcamws.GCAMSoapClient gcam = new gcamws.GCAMSoapClient();

        //increase time span to avoid timeout error
        gcam.Endpoint.Binding.SendTimeout = new TimeSpan(02, 55, 00);

        lblMsg.Text = gcam.GCAM_Main();
        lblWarn.Text = "";
        cmdRun.Visible = true;
        cmdRun2.Visible = false;
        cmdNo.Visible = false;
    }
Ejemplo n.º 3
0
    protected void cmdRun_Click(object sender, EventArgs e)
    {
        string endyear = cmbEndYear.Text;

        gcamws.GCAMSoapClient gcam = new gcamws.GCAMSoapClient();

        //first update ebd year
        string s = gcam.update_stop_period(endyear);

        if (s == "Successfully updated")
        {
             lblWarn.Text = "End year is updated, do you still want to run GCAM? it could take upto 2 hours";
             cmdRun.Visible = false;
             cmdRun2.Visible = true;
             cmdNo.Visible = true;
        }
        else
            lblMsg.Text = s;
    }