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

Popular posts from this blog

qt - switch/case statement in C++ with a QString type -

python - sqlite3.OperationalError: near "REFERENCES": syntax error - foreign key creating -

Python's equivalent for Ruby's define_method? -