FileUpload ASP.NET控件在Windows 7下无法运行

时间:2010-04-28 23:29:41

标签: .net asp.net vb.net windows-7 internet-explorer-8

我有一个包含System.Web.UI.WebControls.FileUpload控件的用户控件以及一个“提交”按钮。

单击该按钮时,将执行与以下类似的代码:

If FileUploadControl.HasFile Then
   'Save the file and do some other stuff
End If

此代码适用于Windows XP。但是,如果我使用IE8 32位从Windows 7 64位计算机运行它,HasFile属性始终返回false并且没有保存任何内容?!

非常感谢任何建议/想法。

1 个答案:

答案 0 :(得分:1)

我也遇到了FileUpload控件的问题(不是专门用于Windows 7)。请尝试检查!string.IsNullOrEmpty(fileUploadControl.FileName)。我不知道它对你的具体情况是否会有所帮助,但我对它有用。