0

我正在使用 Telerik Grid 的 .cshtml 页面中未检测到命名空间。在 Model 中,我创建了一个名为 Student 的类。

namespace testRazorView.Models
{
    public class Student
    {
      ..
      ..
     }
}

在 .cshtml 页面中,我需要获取学生类..所以我使用如下。

@(Html.Telerik().Grid<namespace>

未检测到命名空间,即应在命名空间中替换 testRazorView.Models.Student,但未检测到。为此提供解决方案。谢谢。

4

2 回答 2

0

我认为您也可以定义@model。这是 Scot Guthrie 先生本人的文章 - http://weblogs.asp.net/scottgu/archive/2010/10/19/asp-net-mvc-3-new-model-directive-support-in-razor .aspx

于 2012-08-27T13:29:58.930 回答
0

问题已解决。我需要关闭大括号,然后,如果我键入,则会检测到命名空间。那是,

@(Html.Telerik().Grid<namespace>) 

现在我们必须在关闭大括号后输入命名空间。谢谢。

于 2012-08-27T14:13:57.367 回答