public ActionResult SiteMapReports(int PageNo) { var SitemapReportUrl = report.SiteMapReports(PageNo); Response.ContentType = "text/xml"; Response.Write(SitemapReportUrl); Response.End(); return(Content(SitemapReportUrl)); }