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.
例如,如果我将控制标记保存在 DB 而不是 ascx 文件中。如何从字符串常量加载控件?
(当然,如果我不想将副本保存到磁盘)
呃……你真的不能。除非您的控件是服务器端控件,否则它会在 ASP.NET 网站启动时进行预编译。数据库中存储的控件也不能具有子控件或标记数据绑定或数据集。
您实际上应该只将相关数据存储在数据库中并在页面中生成标记(如视图)。