- <asp:Label ID="lblWelcome" runat="server">asp:Label>
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!Page.IsPostBack)
- {
- Label lblWelcome = Page.Master.FindControl("lblWelcome")
- as Label;
- lblWelcome.Text = "Welome message from content page";
- }
-
- }
No comments:
Post a Comment