我正在尝试在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();
有没有办法加载通用库?
答案 0 :(得分:3)
您可以使用母版页上的导入指令或视图
加载它<%@ Import namespace="System.Collections.Generic" %>
答案 1 :(得分:2)
<%@ Import Namespace="System.Collections.Generic" %>
答案 2 :(得分:2)
检查this MSDN帮助主题。