Just curious!
I was wondering, what actually happens so that any control that is defined in .aspx page and having "runat" attribute is accessible in code behind file?
.aspx page:
code behind page: lbl.Text = "This is a label";
If anyone can share some information about what actually is happening here, what makes my label accessible in code behind after adding "runat" attribute?