Use the Reflection Method to allow the user control to dynamically call the parent page

Source: Internet
Author: User
The following shows how the user control calls the setlaeble method on the parent page.
The parent page type is obtained using the reflection method, which avoids the problem of type conversion when different pages call the same (no need to write many cases :)).

Of course, another method is to implement an interface on the parent page, that is, to implement the setlabel method. UC can convert this. Page to this interface.

User Control: Private void button#click (Object sender, system. eventargs E)
{
// Use the Reflection Method to dynamically call the parent page
System. Web. UI. Page P = This. page;
Type pagetype = P. GetType ();
Methodinfo MI = pagetype. getmethod ("setlabel ");
Mi. Invoke (p, new object [] {"you big pig! "});

}

Parent page:

Public void setlabel (string Str)
{
This. label1.text = STR ;;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.