gpt4 book ai didi

c# - Asp.net objectdatasource TypeName 属性错误

转载 作者:行者123 更新时间:2023-11-30 21:04:50 24 4
gpt4 key购买 nike

我使用 ASP:ObjectDataSource 进行网格数据绑定(bind)。

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

<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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com