asp.net - Does ParseControl do any caching? -


We use Page.ParseControl to explain the string of XML in Control. Does it use any type of caching mechanism? If not, what is the way to cache the result?

Page. Load Control seems to support some types of caching.

No caching is included in it. In a case of a control as a reference type, caching will not be recommended in this case. (Whenever you call the ParseControl function you want a new instance of control)

Comments