コード例 #1
0
ファイル: Default.aspx.cs プロジェクト: cookedm87/movieQuiz
 protected void Button4_Click(object sender, EventArgs e)
 {
     if (RadioButtonList3.SelectedIndex < 0)
     {
         errorDiv3.InnerText = "Please select an answer";
     }
     else if (RadioButtonList3.SelectedIndex == 0)
     {
         score++;
         questionsAnswered++;
         Button4.Enabled = false;
         RadioButtonList3.Items.FindByValue("correct").Attributes.Add("class", "right");
         monster.Visible  = true;
         monsterA.Visible = true;
         monsterA.Text    = "Correct! Who doesn't love a good Pixar film. This is, of course, BIlly Crystal as Mike Wazowski.";
         UpdatePanel9.Update();
         UpdatePanel10.Update();
         UpdatePanel11.Update();
     }
     else
     {
         questionsAnswered++;
         Button4.Enabled = false;
         RadioButtonList3.SelectedItem.Attributes.Add("class", "wrong");
         RadioButtonList3.Items.FindByValue("correct").Attributes.Add("class", "right");
         monster.Visible  = true;
         monsterA.Visible = true;
         monsterA.Text    = "I know it's a kids film, but it's a great one. This is, of course, Billy Crystal as Mike Wazowski in Monsters, inc.";
         UpdatePanel9.Update();
         UpdatePanel10.Update();
         UpdatePanel11.Update();
     }
 }
コード例 #2
0
 // Event function
 protected void btnSemster2RightShift_Click(object sender, EventArgs e)
 {
     LBLerror.Text     = "";
     Label1.Text       = "";
     lblErrorMian.Text = "";
     RemSem2ModRec();
     UpdatePanel2.Update();
     UpdatePanel3.Update();
     UpdatePanel12.Update();
     UpdatePanel11.Update();
 }
コード例 #3
0
 // Event function
 protected void btnSemster1LeftShift_Click(object sender, EventArgs e)
 {
     LBLerror.Text     = "";
     Label1.Text       = "";
     lblErrorMian.Text = "";
     RemSem1ModNonRec();
     UpdatePanel1.Update();
     UpdatePanel4.Update();
     UpdatePanel12.Update();
     UpdatePanel11.Update();
 }
コード例 #4
0
    protected void SummitView_Click(object sender, EventArgs e)
    {
        Guid   ppds = new Guid(DropDownList3.SelectedValue);
        string view = TextBox12.Text;
        int    a    = dp.Update_DepView(ppds, Session["UserName"].ToString(), view);

        if (a > 0)
        {
            ScriptManager.RegisterStartupScript(Page, typeof(Page), "alert", "alert('提交成功!')", true);
        }
        else
        {
            ScriptManager.RegisterStartupScript(Page, typeof(Page), "alert", "alert('提交失败!')", true);
        }
        Panel11.Visible = false;
        UpdatePanel11.Update();
        Panel11.Dispose();
        GridView1.DataSource = dp.Query_DefectProduct();
        GridView1.DataBind();
        UpdatePanel2.Update();
    }
コード例 #5
0
 protected void CloseProcessSuggestion_Click(object sender, EventArgs e)
 {
     Panel11.Visible = false;
     UpdatePanel11.Update();
 }
コード例 #6
0
    protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        if (e.CommandName == "setorder")
        {
            GridViewRow row = ((LinkButton)e.CommandSource).Parent.Parent as GridViewRow;

            GridView1.SelectedIndex = row.RowIndex;
            PPID.Text       = e.CommandArgument.ToString();
            Panel9.Visible  = true;
            Panel10.Visible = true;

            GridView4.DataSource = dp.Query_ConnectedWorkOrder(new Guid(PPID.Text));
            GridView4.DataBind();
            GridView5.DataSource = dp.Query_WorkOrder(TextBox20.Text);
            GridView5.DataBind();
            UpdatePanel9.Update();
            UpdatePanel10.Update();
        }

        if (e.CommandName == "getorder")
        {
            GridViewRow row = ((LinkButton)e.CommandSource).Parent.Parent as GridViewRow;
            GridView1.SelectedIndex = row.RowIndex;
            PPID.Text            = e.CommandArgument.ToString();
            Panel9.Visible       = false;
            Panel10.Visible      = false;
            Panel12.Visible      = true;
            GridView9.DataSource = dp.Query_ConnectedWorkOrder(new Guid(PPID.Text));
            GridView9.DataBind();
            UpdatePanel12.Update();
            UpdatePanel10.Update();
            UpdatePanel9.Update();
        }
        if (e.CommandName == "setview")
        {
            GridViewRow row = ((LinkButton)e.CommandSource).Parent.Parent as GridViewRow;
            GridView1.SelectedIndex = row.RowIndex;
            PPID.Text = e.CommandArgument.ToString();
            DropDownList3.Items.Clear();

            SqlDataReader myReader = dp.Query_CapableDep(new Guid(PPID.Text));

            SqlDataReader myReader2 = dp.Query_CapableDepDone(new Guid(PPID.Text));


            while (myReader.Read())
            {
                string a = myReader["BDOS_Name"].ToString();

                if (Session["Department"].ToString().Contains(myReader["BDOS_Name"].ToString()))
                {
                    DropDownList3.Items.Add(new ListItem(myReader["BDOS_Name"].ToString(), myReader["PPDS_ID"].ToString()));//增加Item
                }
            }



            while (myReader2.Read())
            {
                ListItem li = DropDownList3.Items.FindByText(myReader2["BDOS_Name"].ToString());
                DropDownList3.Items.Remove(li);
            }
            if (DropDownList3.Items.Count > 0)
            {
                Panel11.Visible = true;
                UpdatePanel11.Update();
            }
            else
            {
                ScriptManager.RegisterStartupScript(Page, typeof(Page), "alert", "alert('处理意见已填写或您没有相应的权限!')", true);
            }
        }
        if (e.CommandName == "getview")
        {
            GridViewRow row = ((LinkButton)e.CommandSource).Parent.Parent as GridViewRow;
            GridView1.SelectedIndex = row.RowIndex;
            PPID.Text             = e.CommandArgument.ToString();
            GridView10.DataSource = dp.GetAuditSuggest(new Guid(PPID.Text));
            GridView10.DataBind();
            Panel15.Visible = true;
            UpdatePanel15.Update();
        }
        if (e.CommandName == "track")
        {
            GridViewRow row = ((LinkButton)e.CommandSource).Parent.Parent as GridViewRow;
            GridView1.SelectedIndex = row.RowIndex;
            PPID.Text = e.CommandArgument.ToString();

            Panel13.Visible = true;
            Panel14.Visible = false;
            Panel15.Visible = false;

            UpdatePanel13.Update();
            UpdatePanel14.Update();
            UpdatePanel15.Update();
        }
        if (e.CommandName == "audit")
        {
            GridViewRow row = ((LinkButton)e.CommandSource).Parent.Parent as GridViewRow;
            GridView1.SelectedIndex = row.RowIndex;
            PPID.Text            = e.CommandArgument.ToString();
            GridView8.DataSource = dp.GetAuditSuggest(new Guid(PPID.Text));
            GridView8.DataBind();
            Panel14.Visible = true;
            UpdatePanel14.Update();
        }
        if (e.CommandName == "mod")
        {
            GridViewRow row = ((LinkButton)e.CommandSource).Parent.Parent as GridViewRow;
            GridView1.SelectedIndex = row.RowIndex;
            switchlabel.Text        = "修改";
            PPID.Text      = e.CommandArgument.ToString();
            Panel3.Visible = true;
            UpdatePanel3.Update();
            UpdatePanel4.Update();
        }
        if (e.CommandName == "del")
        {
            GridViewRow row = ((LinkButton)e.CommandSource).Parent.Parent as GridViewRow;
            GridView1.SelectedIndex = row.RowIndex;
            PPID.Text = e.CommandArgument.ToString();
            dp.Delete_DefectProduct(new Guid(PPID.Text));
            GridView1.DataSource = dp.Query_DefectProduct();

            GridView1.DataBind();
            Panel4.Visible  = false;
            Panel10.Visible = false;
            Panel14.Visible = false;
            UpdatePanel2.Update();
            UpdatePanel3.Update();
            UpdatePanel4.Update();
            UpdatePanel10.Update();
            UpdatePanel14.Update();
        }
    }