Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们Page.ParseControl用来将一串 XML 解释为控件。它是否使用某种缓存机制?如果没有 - 有没有办法缓存它的结果?
Page.ParseControl
Page.LoadControl似乎支持某种缓存。
Page.LoadControl
似乎没有涉及任何缓存。由于 aControl是引用类型,在这种情况下不建议使用缓存。(每次调用ParseControl函数时都需要一个新的控件实例)
Control
ParseControl
LoadControl不执行缓存,但不同的是ParseControl每次都会解析输入字符串以动态创建控件,而LoadControl在创建新实例时将重新使用解析的控件模板和类类型,使其成为一个数量级快点。
LoadControl