我使用DNN6和我creted兩個模塊,並試圖用模塊溝通它們之間的連接不工作,這是我的代碼:模塊通訊在DNN
#region IntermoduleCommunication
ModuleCommunicationEventArgs oArgs = new ModuleCommunicationEventArgs();
oArgs.Value = Session["ShoppingCart"];
if (ModuleCommunication != null)
ModuleCommunication(this, oArgs);
#endregion
,但我在ModuleCommunication越來越「空」變量?
克里斯,我從一個模塊成功地將值傳遞給另一個,但我標籤d oes沒有得到View.ascx文本的更新。我該如何強制查看它? – alwaysVBNET