私は、Webを設計するためのVisual Studio 2010を使用しています、と私は層型名にアセンブリの明示を指定する方法は?
プログラミングを使用している、私はgidviewとのObjectDataSourceを使用していますが、私はこのexeptionを得る:
"The type 'WebApplication4.view1' is ambiguous: it could come from assembly
'C:\Users\EHSAN\AppData\Local\Temp\Temporary ASP.NET
Files\root\d04444bc\d654bde6\App_Code.i0fp6yrj.DLL' or from assembly
'C:\Users\EHSAN\Documents\Visual Studio
2010\Projects\WebApplication4\WebApplication4\bin\WebApplication4.DLL'. Please
specify the assembly explicitly in the type name."
私は私を入れてここでのコード:
これは私のweb.aspxです:
<asp:ObjectDataSource ID="ObjectDataSource1" Runat="server" TypeName="WebApplication4.view1"
SelectMethod="Search" OldValuesParameterFormatString="original_{0}" >
</asp:ObjectDataSource>
、これはにApp_CodeでBALフォルダ内のsearch.csファイルです:
namespace WebApplication4
{
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;
using System.Data;
public class view1 : System.Web.UI.Page
{
public view1()
{ }
public List<person> Search()
{
List<person> persons = new List<person>();
DataSet ds = PersonsDB.Search();
foreach (DataRow row in ds.Tables[0].Rows)
{
persons.Add(new person((String)row["id"], (String)row["nam"], (String)row["family"], (String)row["namepedar"], (String)row["shshenas"], (String)row["codemelli"]));
}
return persons;
}
}
ここで問題はありますか?
あなたの返事ありがとう、私は私のソリューションのすべてでview1という名前の他のクラスがありません! –
一時Webファイルを消去しようとしましたか? – Augusto