Hello
I have heard that we should avoid Default ASP.Net Controls, because they are heavy regarding Viewstate and etc...
So I was thinkink in using , , HTML tags whenever I want to only show information, and use the Eval function to insert server-side code in a href or src atribute.
But I have also heard that the Eval function is not the best performance solution, because it uses reflection to evaluate argument passed.
So I was planning in using explicit cast inside simple html tags.
Is this the best solution regarding performance? Do you have any other sugestion/opinion?