TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
prabhu p
NA
181
114.4k
how to change table position in mvc view?
Mar 7 2015 10:13 AM
i has model,controller and view its working fine getting values from db sql.ok
but i want change table position in view(Razor) and one more question can we able to see razor view design without running application
here is view(razor)
@model IEnumerable <practicemvc4part2.Models.Employee>
<h2>Indexs</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<div style= "background-image: url('../../Images/white-background.jpg'); height:500px; width:750px;">
<br />
<table border="1" style=" position:absolute; height:90px; width:300px; margin-left:3px; ">
<tr>
<th align="center">
@Html.DisplayNameFor(model => model.name)
</th>
<th align="center">
@Html.DisplayNameFor(model => model.gender)
</th>
<th align="center">
@Html.DisplayNameFor(model => model.city)
</th>
<th align="center">
@Html.DisplayNameFor(model => model.dob)
</th>
<th align="center">
Action
</th>
</tr>
@foreach (var item in Model) {
<tr>
<td align="center">
@Html.DisplayFor(modelItem => item.name)
</td>
<td align="center">
@Html.DisplayFor(modelItem => item.gender)
</td>
<td align="center">
@Html.DisplayFor(modelItem => item.city)
</td>
<td align="center">
@Html.DisplayFor(modelItem => item.dob)
</td>
<td align="center">
@Html.ActionLink("Edit", "Edit", new { id=item.id }) |
@Html.ActionLink("Details", "Details", new { id=item.id }) |
@Html.ActionLink("Delete", "Delete", new { id=item.id })
</td>
</tr>
}
</table>
</div>
Reply
Answers (
2
)
asp.net
Multiple selection listbox and display records from database