我使用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
现在一切正常。是工作。
但是我想知道我的问题的实际解决方案。
为什么会引发错误?
实际上,如果我的代码可以在设计层编写,则我不想将其移动到代码隐藏层。
每个建议将不胜感激。
最佳答案
问题是您使用的是短类型名称而不是完整类型名称。
将FolderName_CodeBehindClassName
替换为The.NameSpace.YouHaveYourTypeIn.FolderName_CodeBehindClassName, Name.Of.Your.Assembly
。
关于c# - Asp.net objectdatasource TypeName属性错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12089488/