gpt4 book ai didi

c# - 如何在 .ascx 中使用 "using"指令?

转载 作者:行者123 更新时间:2023-11-30 18:51:50 27 4
gpt4 key购买 nike

我很无聊,在 .ascx 上编写 C# 代码,使用这种语法:

<%    
foreach (OriginalPackage.MyPack in OriginalPackage.MyPacks) {
}
%>

代替

     foreach (MyPack in MyPacks) {
}

编写正确的using OriginalPackage;

那么,有没有办法在 .ascx 上使用 using

最佳答案

使用 @import指令改为:

<%@ Import namespace="OriginalPackage" %>

Explicitly imports a namespace into an ASP.NET application file (such as a Web page, a user control, a master page, or a Global.asax file), making all classes and interfaces of the imported namespace available to the file. The imported namespace can be part of the .NET Framework class library or a user-defined namespace.

关于c# - 如何在 .ascx 中使用 "using"指令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8326962/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com