gpt4 book ai didi

c# - Type.GetType() 返回 null

转载 作者:太空狗 更新时间:2023-10-29 17:30:10 27 4
gpt4 key购买 nike

<分区>

我有一个使用用户控件动态创建网页的网络应用程序。

在我的代码中,我有以下内容:

    private void Render_Modules()
{
foreach (OnlineSystemPageCustom.OnlineSystemPageHdr.OnlineSystemPageModule item in custompage.Header.Modules)
{
if (item.ModuleCustomOrder != 99 && !item.ModuleOptional)
{
string typeName = item.ModuleInternetFile;
Type child = Type.GetType(typeName);
webonlinecustombase ctl = (webonlinecustombase)Page.LoadControl("../IPAM_Controls/webtemplatecontrols/" + child.Name.ToString() + ".ascx");
ctl.Event = Event;
ctl.custompage = custompage;
ctl.custommodule = item;
this.eventprogrammodules.Controls.Add(ctl);
}
}
}

返回的“typeName”(示例)是:

IPAMIntranet.IPAM_Controls.webtemplatecontrols.eventorgcommittee

用户控件的命名空间如下:

namespace IPAMIntranet.IPAM_Controls

我遇到的问题是 Type.GetType(typeName) 返回 null。我在这里缺少什么?

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