2

ASP:ObjectDataSource用于网格数据绑定。

我的问题是当我运行此代码时出现错误。

<asp:ObjectDataSource ID="odsListing" 
runat = "server"  
SelectMethod = "MethodNameOfCodeBehindClass"
TypeName = "FolderName_CodeBehindClassName" ></asp:ObjectDataSource>

错误信息

The type specified in the TypeName property of 
ObjectDataSource 'odsListing' could not be found.

所以我将我的代码移动到代码隐藏站点。

    #region ObjectDataSource for Grid Binding
    Type type = typeof(FolderName_CodeBehindClassName);
    string assemblyQualifiedName = type.AssemblyQualifiedName;

    odsListing.TypeName = assemblyQualifiedName;
    odsListing.SelectMethod = "ListingDatabind";
    #endregion

现在一切正常。这是工作。但我想知道我的问题的实际解决方案。为什么会引发错误?

实际上,如果它可以在设计层编写,我不想将我的代码移动到代码隐藏层。

每一个建议都将不胜感激。

4

1 回答 1

4

问题是您使用的是短类型名称而不是完整类型名称。

替换FolderName_CodeBehindClassNameThe.NameSpace.YouHaveYourTypeIn.FolderName_CodeBehindClassName, Name.Of.Your.Assembly

于 2012-08-23T10:24:25.930 回答