3
Answers

how to do mvc details view page responsive in table format

hello ...
how to do mvc details view page responsive in table format..?
Given Below Is Code 
<table>
<tr>
<td><b>@Html.DisplayNameFor(model => model.Business.BusinessName)</b></td>
<td>@Html.DisplayFor(model => model.Business.BusinessName)</td>
<td><b>@Html.DisplayNameFor(model => model.Title)</b></td>
<td>@Html.DisplayFor(model => model.Title)</td>
<td><b>@Html.DisplayNameFor(model => model.Description)</b></td>
<td>@Html.DisplayFor(model => model.Description)</td>
</tr>
<tr>
<td><b>@Html.DisplayNameFor(model => model.BusinessLocation.Address)</b></td>
<td>@Html.DisplayFor(model => model.BusinessLocation.Address)</td>
<td><b>@Html.DisplayNameFor(model => model.MasterCategory.Category)</b></td>
<td>@Html.DisplayFor(model => model.MasterCategory.Category)</td>
<td><b>@Html.DisplayNameFor(model => model.Createdby)</b></td>
<td>@Html.DisplayFor(model => model.Createdby)</td>
</tr>
 
Answers (3)