Thank you for the reply. I am trying to use module communication. seems not working for me and think my issue is how I am receiving the values.
This is the upper part of the receiving module and think you will have an idea where have I done this wrong by this.
public partial class ViewMYmodule : PortalModuleBase, IActionable, IModuleListener
{
public void OnModuleCommunication(object s, ModuleCommunicationEventArgs e)
{
//if (e.Sender == "ACS.BCU_Training.Search")
//{
string imcValue = (string)e.Value;
BindList(imcValue);
//lblMessage.Text = " " + imcValue.ToString();
//}
}
public void BindList(string test)
{
lblMessage.Text = " " + test.ToString();
Response.Write(test);
}
protected void Page_Load(object sender, EventArgs e)
{
...
...
...
..
Please advice me how to display this value in the page load event.
Thank you,