繁体   English   中英

ASP中用于从用户控件到父页面进行通信的技术是什么?

[英]What are techniques in ASP for communication from usercontrol to parent page?

从用户控件到主页的通讯出现问题。 引发事件的顺序意味着用户控件上的操作在回发中发生得太晚而无法在主页上产生作用。

例如,我在用户控件上有一个按钮,当按下该按钮时,会引发一个自定义事件,该事件正在主页上被监听。 当按下按钮时,回发顺序为:

  • page_load-在主页上

  • page_load-用户控件上(用户控件由主页page_load以编程方式加载)

  • 用户控件上的按钮回调

  • 主页上的事件回调方法

至此, 事件回调方法确实对呈现的页面产生任何影响似乎为时已晚,例如,我试图使用它来更改正在显示的用户控件。

这种通讯还可以使用哪些其他技术?

相关代码主页:

    public string LastLoadedControl
    {
        get
        {
            return Session["LastLoaded"] as string;
        }
        set
        {
            Session["LastLoaded"] = value;
        }
    }

    private void LoadUserControl()
    {
        string controlPath = LastLoadedControl;

        ContentPlaceholder.Controls.Clear();

        if (string.IsNullOrEmpty(controlPath))
            controlPath = Utils.Paths.USERCTRL_BASE + "Main.ascx";

        Control uc = Page.LoadControl(controlPath);
        ContentPlaceholder.Controls.Add(uc);

    }

    protected void Page_Load(object sender, EventArgs e)
    {
        LoadUserControl();
        if (!IsPostBack)
            Utils.Events.redirectPage += Events_redirectPage;

    }

    private void Events_redirectPage(string path)
    {

        if (path.Equals("Main"))
        {
            //Session.Clear();
            //Session.Abandon();
        }
        else LastLoadedControl = Paths.USERCTRL_BASE + path + ".ascx"
        LoadUserControl();
    }

用户控制

    protected void profileBtn_Click(object sender, EventArgs e)
    {
        Utils.Events.triggerRedirectPage("Login");
    }

事件

public class Events
{
    public delegate void redirectEvent(string path);
    public static event redirectEvent redirectPage;

    public static void triggerRedirectPage(String path)
    {
        if (Utils.Events.redirectPage != null)
            Utils.Events.redirectPage(path);
    }
}

您可以遵循两种方法。

方法1:

public interface IEventProvider
{
  void TriggerEvent();  
}

public class YourPage: Page, IEventProvider
{
   // Other page methods

   public void TriggerEvent()
   {
     // Your Implementation
   }
}

public class YourUserControl : WebUserControl
{
    protected void profileBtn_Click(object sender, EventArgs e)
    {
        IEventProvider eventProvider = this.Page as IEventProvider;
        if(eventProvider != null)
           eventProvider.TriggerEvent();
    }
}

方法二:

public interface IEventProvider
{
    // This does not have to be a boolean. You can use a string / enum / anything that suits your implementation
    bool Trigger {get; set;}
}

public class YourPage: Page, IEventProvider
{
   // Other page methods

   protected override void OnLoadComplete(EventArgs e)
   {
     // This will be raised when all the events have fired for all the controls in the page. 
     if(this.Trigger)
        TriggerEvent();
   }

   protected void TriggerEvent()
   {
     // Your code here
   }

   public bool Trigger
   {
     get;
     set;
   }
}

public class YourUserControl : WebUserControl
{
    protected void profileBtn_Click(object sender, EventArgs e)
    {
        IEventProvider eventProvider = this.Page as IEventProvider;
        if(eventProvider != null)
           eventProvider.Trigger = true;
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM