nrdkwebsite/nrdkwebsite/Pages/users.cshtml

16 lines
No EOL
421 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@page
@using System.Collections
@model Users
<style>
td, th {
padding: 5px 10px;
}
</style>
<table>
<tr><th>текст заголовка</th><th>текст заголовка</th></tr> <!--ряд с ячейками заголовков-->
<tr><td>данные</td><td>данные</td></tr> <!--ряд с ячейками тела таблицы-->
</table>
<script src="~/js/site.js"></script>