【发布时间】:2012-06-12 14:21:59
【问题描述】:
我正在使用 DNN6,我创建了两个模块并尝试使用模块通信器在它们之间进行连接,这是我的代码:
#region IntermoduleCommunication
ModuleCommunicationEventArgs oArgs = new ModuleCommunicationEventArgs();
oArgs.Value = Session["ShoppingCart"];
if (ModuleCommunication != null)
ModuleCommunication(this, oArgs);
#endregion
但我在 ModuleCommunication 变量中得到“null”?
【问题讨论】:
标签: c# .net dotnetnuke