ASP源代码:!DOCTYPE html
html
body
@{
if (IsPost)
{
string companyname = Request;
string contactname = Request;
pYou entered: br
Company Name: @companyname br
Contact Name: @contactname /p
}
el ...
ASP源代码:html
body
@RenderPage(header.cshtml)
h1Hello Web Pages/h1
pThis is a paragraph/p
@RenderPage(footer.cshtml)
/body
/html运行结果:This is a header from a separate fileHello Web PagesThis is a ...
WebGrid - 众多有用的 ASP.NET Web 帮助器之一。自己写的 HTML在前面的章节中,您使用 Razor 代码显示数据库数据,所有的 HTML 标记都是手写的:数据库实例@{
var db = Database.Open(SmallBakery);
var selectQuery ...