このエラーが表示された場合はどうすればよいですか:( DataSource と DataSourceID の両方が 'DataLista' で定義されています。1 つの定義を削除してください。)
私のコードは以下の通りです:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{string path = Server.MapPath(".") + "\\upload\\";
string[] list = System.IO.Directory.GetFiles(path);
var listone = from filename in System.IO.Directory.GetFiles(path) select string.Format("upload/{0}", System.IO.Path.GetFileName(filename));
DataLista.DataSource = listone;
DataLista.DataBind();//This line gives error
}
}