forked from codehub-learn/Ms-App-Crm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
130 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
@model Microsoft_Azure_Academy.Models.CustomerOptionModel | ||
@* | ||
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 | ||
*@ | ||
@{ | ||
} | ||
|
||
|
||
<h1> Update Customer code = @Model.customer.Id </h1> | ||
|
||
<form> | ||
<table align="center"> | ||
<tr align="center"> | ||
<td> | ||
Id | ||
</td> | ||
<td> <input type="text" id="Id" value="@Model.customer.Id" readonly/></td> | ||
</tr> | ||
|
||
|
||
<tr align="center"> | ||
<td> | ||
FirstName | ||
</td> | ||
<td> <input type="text" id="FirstName" value="@Model.customer.FirstName" /></td> | ||
</tr> | ||
|
||
<tr align="center"> | ||
<td> | ||
LastName | ||
</td> | ||
<td> | ||
<input type="text" id="LastName" value="@Model.customer.LastName" /> | ||
</td> | ||
</tr> | ||
|
||
<tr align="center"> | ||
<td> | ||
Address | ||
</td> | ||
<td> | ||
<input type="text" id="Address" value="@Model.customer.Address" /> | ||
</td> | ||
</tr> | ||
<tr align="center"> | ||
<td> | ||
</td> | ||
<td> | ||
<input type="text" id="Email" value="@Model.customer.Email" /> | ||
|
||
</td> | ||
</tr> | ||
<tr align="center"> | ||
<td> | ||
|
||
VatNumber | ||
</td> | ||
<td> | ||
<input type="text" id="VatNumber" value="@Model.customer.VatNumber" /> | ||
</td> | ||
</tr> | ||
<tr align="center"> | ||
<td> | ||
<input type="button" value="Submit data" onclick="updateCustomer()" /> | ||
</td> | ||
</tr> | ||
|
||
</table> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters