java test

Java code posted by test
created at 06 Jan 11:09, updated at 11 Jan 13:07

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.WebControls;

        Control control;
        protected override void CreateChildControls()
        {
            base.CreateChildControls();
            try
            {
                this.control = this.Page.LoadControl(@"~/_controltemplates/AnzeigeControl.ascx");
                this.Controls.Add(this.control);
            }catch(Exception e){
                Label lTitel = new Label();
                lTitel.Text = e.Message;
                this.Controls.Add(lTitel);
            }
571 Bytes in 2 ms with coderay