摘要:
Chapter03: AccountProfile Index.aspx: <h2>Profiles</h2> <table> <tr> <th>Username</th> <th>First name</th> <th>Last name</th> <th>Email</th> <th> </th> </tr> <% foreach (var profile in Model) { %... 阅读全文
摘要:
Chapter02: 1). InputModel New.aspx: <h2>New Customer</h2> <form action="<%= Url.Action("Save") %>" method="post"> <fieldset> <div> <%= Html.LabelFor(x => x.FirstName) %> <%= Html.TextBoxFor(x => x.Fir... 阅读全文
摘要:
Chapter01: 1). GuestBook Index.aspx: <form method="post" action="/GuestBook/Sign"> <fieldset> <legend>Guest Book</legend> <%= Html.Label("Name") %> <%= Html.TextBox("Name") %> <%= Html.Label("Email") ... 阅读全文