コード例 #1
0
    protected void confirmationData_Click(object sender, EventArgs e)
    {
        CourseConfirmationLabel.Text = getCourseInfo();
        GridView gvMeetings = (GridView)Meetings_New1.FindControl("gvMeetings");

        foreach (GridViewRow thisRow in gvMeetings.Rows)
        {
            hidRooms.Value += thisRow.Cells[0].Text + ",";
        }

        mvSubmissionForm.ActiveViewIndex = 2;
    }
コード例 #2
0
    protected void confirmationData_Click(object sender, EventArgs e)
    {
        CourseConfirmationLabel.Text = "Section ID: " + SectionsID.ToString() + "<br /><br />" + getCourseInfo();
        /* Delete Temp Records */
        GridView gvMeetings = (GridView)Meetings_New1.FindControl("gvExistingMeeting");

        foreach (GridViewRow thisRow in gvMeetings.Rows)
        {
            hidRooms.Value += thisRow.Cells[0].Text + ",";
        }

        GridView gvMeetings2 = (GridView)Meetings_New1.FindControl("gvMeetings");

        foreach (GridViewRow thisRow in gvMeetings2.Rows)
        {
            hidRooms.Value += thisRow.Cells[0].Text + ",";
        }

        mvSubmissionForm.ActiveViewIndex = 2;
    }