AuScGen.TestExecutionUtil.CreatePlayBack.CreateBody C# (CSharp) Method

CreateBody() private method

private CreateBody ( StringBuilder sb, string path, string testName ) : void
sb StringBuilder
path string
testName string
return void
        private void CreateBody(StringBuilder sb, string path, string testName)
        {
            sb.AppendLine("<body background=\"../img/background.jpg\">");
            sb.AppendLine("<table width ='100%' style='background-color:#26466d;font-family:Verdana;font-size:16;font-weight:800;color:White'>");
            sb.AppendLine("<tr>");
            sb.AppendLine("<td><img src=\"../img/AuScGenLogo.png\" align='left' style='opacity: 1;background-color:#26466d'></td>");
            sb.AppendLine(string.Format("<td align='Center'>{0} Replay</td>", testName));
            sb.AppendLine("<td><img src=\"../img/Alliancelogo.png\" align='right' style='opacity: 1;background-color:#26466d'></td>");
            //sb.AppendLine("<td style=\"top: 10px\"></td>");
            sb.AppendLine("</tr>");
            sb.AppendLine("</table>");
            sb.AppendLine("<table><tr>");
            sb.AppendLine("<td>");
            sb.AppendLine("<div id=\"slider1_container\" style=\"display: none; position: relative; margin: 0 auto; top: 8px; left: 0px; width: 900px; height: 400px; overflow: hidden\">");

            CreateSlides(sb, path);

            sb.AppendLine("<link href=\"../js/SliderBulletCSS.css\" type=\"text/css\" rel=\"stylesheet\" />");
            sb.AppendLine("<link href=\"../js/NavArrows.css\" type=\"text/css\" rel=\"stylesheet\" />");
            sb.AppendLine("<div u=\"navigator\" class=\"jssorb21\" style=\"bottom: 26px; right: 6px;\">");
            sb.AppendLine("<div u=\"prototype\"></div>");
            sb.AppendLine("</div>");
            sb.AppendLine("<span u=\"arrowleft\" class=\"jssora21l\" style=\"top: 123px; left: 8px;\">");
            sb.AppendLine("</span>");
            sb.AppendLine("<span u=\"arrowright\" class=\"jssora21r\" style=\"top: 123px; right: 8px;\">");
            sb.AppendLine("</span>");
            sb.AppendLine("</div>");
            sb.AppendLine("</div>");
            sb.AppendLine("</td>");
            sb.AppendLine("</tr></table>");
            sb.AppendLine("<script src=\"../js/jquery-1.9.1.min.js\"></script>");
            sb.AppendLine("<script src=\"../js/bootstrap.min.js\"></script>");
            sb.AppendLine("<script src=\"docs.min.js\"></script>");
            sb.AppendLine("<script src=\"../js/ie10-viewport-bug-workaround.js\"></script>");
            sb.AppendLine("<script type=\"text/javascript\" src=\"../js/jssor.slider.mini.js\"></script>");
            sb.AppendLine("<script src=\"../js/SliderConfig.js\"></script>");
            sb.AppendLine("</body>");
            sb.AppendLine("</html>");

        }