Пример #1
0
    protected void Button1_Click(object sender, EventArgs e)
    {
        instructor();
        venue();
        volunteer();
        hospitality();
        course();
        registration();
        atmosphere();

        /*   v.instructor = 1;
         * v.venue = 2;
         * v.Volunteer = 4;
         * v.hospitality = 5;
         * v.course = 1;
         * v.registration = 2;
         * v.atmosphere = 5;*/
        FeedbackDAL d   = new FeedbackDAL();
        int         sid = Convert.ToInt32(Session["Feedback_Key"]);

        d.Addfeedback(v, sid);
    }