请看一下这篇简短的文章.. ARTICLE
protected void btnUpload_Click(object sender, EventArgs e)
{
if (count == 0)
{
claimno = PostData(hidnname, hidnlineitems); //this always gets executed
}
for (int i = 0; i < Request.Files.Count; i++)//does not gets executed after deployment
{
// code to save files in database
}
}
我试图实现这个项目,只要我使用visual studio在本地计算机上运行应用程序就可以正常工作。部署后,似乎永远不会执行for loop
。我的猜测是Request.Files
为空。但是当我在本地机器上运行项目时,它工作正常。任何想法可能是什么问题?