How to inherit basepage from a page

Source: Internet
Author: User

1. Create BasePage. cs to inherit from the Page class.

1 protected void page_load (Object sender, system. eventargs E)
2 {
3 if (! Ispostback)
4 {
5 string name = Strid; // context. User. Identity. Name;
6 email. Text = databasegateway. retrieveaddress (name );
7 sitename. Text = "Microsoft-site ";
8 // define the pageload event
9 pageloadevent (sender, e );
10}
11}

2. The Code hiding class of the page inherits from BasePage.

1 public class main: basepage
2 {
3 protected System. Web. UI. WebControls. HyperLink HyperLink1;
4 protected System. Web. UI. WebControls. Label pageNumber;
5 // overwrite the PageLoad event of BaePage
6 protected override void PageLoadEvent (object sender, System. EventArgs e)
7 {
8 pageNumber. Text = "Page 1 ";
9}
10}

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.