我有以下代码行适用于一个用户控件而不是另一个:
Folder_UserControl1 myVar = (Folder_UserControl1)LoadControl(@"~/Folder/UserControl1.ascx");
但它不适用于此:Folder_UserControl22
我收到以下编译错误:
Error 4 The type or namespace name 'Folder_UserControl22' could not be found (are you missing a using directive or an assembly reference?)
我检查了所有文件看起来都一样,都是公共部分类。
我错过了什么?
谢谢