Thanks but I am creating the UpdateProgress completely in the CodeBehind and adding it to form1.Controls. I am not trying to access it from CodeBehind. I am creating it.
1 UpdateProgress1 = new UpdateProgress();
2 UpdateProgress1.ID = "UpdateProgress1";
How do I add the ProgressTemplate?
I tried this but got an error saying that the ProgressTemplate is required.
1 UpdateProgress1.Controls.Add(new LiteralControl("Loading..."));