Dr.Ajay Kashyap

Dr.Ajay Kashyap

  • 1.1k
  • 521
  • 277.3k

how to do mvc details view page responsive in table format

Nov 25 2016 11:06 PM
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)