asked on
CS0246: The type or namespace name 'StringWriter' could not be found (are you missing a using directive or an assembly reference?)
Line 73: Response.AddHeader("content-disposition", "attachment;filename=Panel.pdf");
Line 74: Response.Cache.SetCacheability(HttpCacheability.NoCache);
Line 75: StringWriter sw = new StringWriter();
Line 76: HtmlTextWriter hw = new HtmlTextWriter(sw);
Line 77: pnlPerson.RenderControl(hw);