CS1061: “System.Windows.Forms.OpenFileDialog”不包含“FilterInex”的定义,并且找不到可接受类型为“System.Windows.Forms.OpenFileDialog”的第一个参数的扩展方法“FilterInex”(是否缺少 using 指令或程序集引用?)
源错误:
行 24: ofd.InitialDirectory = "e:\\"; //定义打开的默认文件夹位置
行 25: ofd.Filter = "txt files(*.txt|*.txt|All files(*.*)|*.*";
行 26: ofd.FilterInex = 3;
行 27: ofd.RestoreDirectory = true;
行 28: //if (ofd.ShowDialog() == DialogResult.ok)
|
FilterInex 使用using后还是错误
CS0234: 命名空间“System”中不存在类型或命名空间名称“FilterInex”(是否缺少程序集引用?)
源错误:
行 13: using System.Windows.Forms;
行 14: using System.Windows;
行 15: using System.FilterInex;
行 16:
行 17: public partial class Default2 : System.Web.UI.Page
|
我的代码:
using System.Xml.Linq;
using System.Windows.Forms;
using System.Windows;
using System.FilterInex;
public partial class Default2 : System.Web.UI.Page
{
protected void Button1_Click(object sender, EventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog(); //new一个方法 ofd.InitialDirectory = "e:\\"; //定义打开的默认文件夹位置
ofd.Filter = "txt files(*.txt|*.txt|All files(*.*)|*.*";
ofd.FilterInex = 3;
ofd.RestoreDirectory = true;
FilterInex 该如何引用
各位前辈,请 指点下。
晕,web页面里调用winform的打开文件控件,为什么要这么用啊?
那应该用什么控件, 在web里
@天眼在线: <input type=file />用这个。