代码之家  ›  专栏  ›  技术社区  ›  Luke101

ASP.NET MVC:如何通过using命令添加库

  •  1
  • Luke101  · 技术社区  · 15 年前

    我正在尝试在ASPX页面中加载泛型。这是我的密码

    <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
    
    
    <div id="CategorySelectBoxes">
    <%  
        //this has syntax error
        using System.Collections.Generic;
    
        //get parentid list
        category c = new category();
    

    是否有方法加载通用库?

    3 回复  |  直到 15 年前
        1
  •  3
  •   stimms    15 年前

    您可以使用主页面或视图上的导入指令加载它。

    <%@ Import namespace="System.Collections.Generic" %>
    
        2
  •  2
  •   Diadistis    15 年前
    <%@ Import Namespace="System.Collections.Generic" %>
    
        3
  •  2
  •   Atanas Korchev    15 年前

    检查 this msdn帮助主题。