Skip to content

Instantly share code, notes, and snippets.

@CoreProgramm
Last active May 6, 2020 20:25
Show Gist options
  • Save CoreProgramm/1cb923cea757c149feea80e8036fcacf to your computer and use it in GitHub Desktop.
Save CoreProgramm/1cb923cea757c149feea80e8036fcacf to your computer and use it in GitHub Desktop.
Introduction to .NET Framework MVC
@model CustomerManagement.Customer
<html>
<head>
<title>Customer Details</title>
</head>
<body>
<table class="has-fixed-layout" style="width:50%">
<thead>
<tr><th colspan="2">Customer Details</th></tr>
</thead>
<tbody>
<tr><td>Customer Id</td><td>1</td></tr>
<tr><td>Customer Name</td><td>Jhon Smith</td></tr>
<tr><td>Customer Address</td><td>USA</td></tr>
<tr><td>Customer Mobile no.</td><td>6743289654</td></tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment