I’ve made a basic page in ASP.NET WebForms and I was wondering why there are lots of literal controls appearing in the ASP.NET trace. Here a picture.
Thanks.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
All text gets turned into
Literalsby the compilation engine. When ASP.NET renders the page it take all you markup(<span>hello</span>), code(Control.Add(...)) and controls(<asp:button/>) and builds a control tree.This is an older article but it explains how the compilation works:
Compilation and Deployment in ASP.NET 2.0