我正在使用IIS服务器托管我的.net(MVC)应用程序,并且我们为两个环境1)开发和2)生产有两个不同的RDP。
用于检查内容类型的代码:
if (file.ContentType != "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
{
data.Status.Message = "Please upload a valid excel file of version 2007 and above";
return data;
}
在开发环境中,我们获得了“ application / vnd.openxmlformats-officedocument.spreadsheetml.sheet,在生产中,我们将其变为空白”
有人遇到这种情况吗?该如何解决?
问题是我无法给出全新的版本来解决该问题,我所能做的就是尝试解决此问题而不接触编译的DLL。
感谢您的帮助。