How does ASP.Net Eval() work?

Can someone please explain how Eval really works in ASP.NET?I understand that Eval is just an expression for DataBinder.Eval but I want to know what is actually happening behind the scenes.I read that DataBind happens on the controls PreRender, but that confuses me because I can call the controls .DataBind() function at anytime.At what point does the Eval statement become actual text?
 
Back
Top