asp.net 및 c#을 사용하여 Excel 2007 또는 Word 2007 파일을 스트리밍하는 방법 저는 웹 앱 작업을 하고 있는데 다양한 파일을 스트리밍해야 합니다.저는 pdf, 이미지, 오래된 오피스 문서를 할 수 있습니다.그런데 2007년 문서를 하려고 하면 깨집니다.여기 내 코드가 있습니다. Response.Buffer = true; Response.Clear(); Response.ClearContent(); Response.ClearHeaders(); switch (FileExtension.ToLower()) { case "pdf": Response.ContentType = "application/pdf"; break; case "doc": Response.ContentType = "appli..