User-1552614833 posted
try this code...
HttpContext.Current.Response.Clear(); HttpContext.Current.Response.Charset = "";
HttpContext.Current.Response.ContentType = "application/msword"; string strFileName = "DocumentName" + ".doc";
HttpContext.Current.Response.AddHeader("Content-Disposition", "inline;filename=" + strFileName);
StringBuilder strHTMLContent = new StringBuilder(); strHTMLContent.Append(RadEditor1.Content);
HttpContext.Current.Response.Write(strHTMLContent); HttpContext.Current.Response.End();
HttpContext.Current.Response.Flush();