0

有没有办法将 HTML 结构存储在 SQL 视图中,并通过控制器将其与存储的 HTML 结构一起输出?

例如,这是一个示例 HTML,我想将其存储在 SQL 视图中并通过控制器输出

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<IEnumerable<vwStudent>>" %>

<html>
<body>
    <table>
        <tr>
            <th>
                Student ID
            </th>
            <th>
                Name
            </th>
            <th>
                GPA
            </th>
            <th>
                Scholarship Amount
            </th>
            <th>
                Eligible Date
            </th>
            <th>
                Is Senior
            </th>
        </tr>

    <% foreach (var item in Model) { %>

        <tr>
            <td>
                <%= Html.Encode(item.StudentID) %>
            </td>
            <td>
                <%= Html.Encode(item.FName) %>
            </td>
            <td>
                <%= Html.Encode(item.GPA) %>
            </td>
            <td>
                <%= Html.Encode(String.Format("{0:F}", item.ScholarshipAmount)) %>
            </td>
            <td>
                <%= Html.Encode(String.Format("{0:g}", item.EligibleDate)) %>
            </td>
            <td>
                <%= Convert.ToString(item.IsSenior) == "True" ? "Yes" : Convert.ToString(item.IsSenior) == "False" ? "No" : null%>
            </td>   
        </tr>

    <% } %>

    </table>
    </body>
    </html>

控制器动作:

public ActionResult Students()
{
    ViewData.Model = students.vwStudent.ToList();
    return View();
}
4

1 回答 1

1

65,000 条记录太多了,无法在单个页面上呈现……您应该使用分页。有一些库可以帮助解决这个问题:https ://www.nuget.org/packages/PagedList.Mvc/

于 2017-04-21T07:45:11.307 回答