public static Int32 UpdateSurvey(Int32 surveyId, string surveyName)
        {
            SurveyDSTableAdapter ta = new SurveyDSTableAdapter();

            ta.Connection.ConnectionString = UcConnection.ConnectionString;
            return(ta.Update(surveyId, surveyName));
        }