示例#1
0
        private string AddBugForVersion_3_0(MyZilla.BusinessEntities.Bug bug, string myZillaUrl, string charset)
        {
            string result = string.Empty;

            MyZilla.BL.Utils.HttpHelper httpDialog = new HttpHelper(_connectionId, charset);

            string htmlContent =  httpDialog.PostMultipartWhenAddingBug(bug, myZillaUrl );

            #if DEBUG
            MyZilla.BL.Interfaces.Utils.htmlContents = htmlContent;
            #endif

            result = ValidateAddBug(htmlContent);

            return result;
        }