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.
我在该解决方案中有一个 Web 应用程序我向该解决方案添加了一个项目我想在我新添加的项目中访问 Web 应用程序 App_code 类如何在此处访问这些类....
推荐的方法是将共享类放在类型类库的第三个项目中,并让 Web 应用程序和第二个项目都引用该库。
尝试<%@ Import Namespace="EngineLibrary.BussinessLayer.CommonUtilites" %> 在您的 aspx 页面上使用,也可以using EngineLibrary.BussinessLayer在您的 aspx.cs 页面上使用。
<%@ Import Namespace="EngineLibrary.BussinessLayer.CommonUtilites" %>
using EngineLibrary.BussinessLayer