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
abhishek singh
NA
160
2.9k
How to select data from multiple table in mvc.
Mar 28 2017 6:55 AM
@foreach (DataRow row in Model.Tables["tbInsertMobile"].Rows)
{
<tr>
@* <td>@(row["MobileID"])
<input type="text" id="Txtmid" style="display:none"/>
</td>*@
<td>@(row["MobileName"])
<input type="text" id="Txtmob" style="display:none"/>
</td>
<td>@(row["MobileIMEno"])
<input type="text" id="TxtMEno" style="display:none;" />
</td>
<td>@(row["mobileprice"])
<input type="text" id="Txtprice" style="display:none" />
</td>
<td>@(row["mobileManufacured"])
<input type="text" id="TxtManufacured" style="display:none" />
</td>
<td><input type="button" value="Edit" id="btnedit" class="adt" /></td>
<td>
<input type="button" value="update" id="btnupdate" />
</td>
<td>
<input type="button" value="Delete" id="btndelete" />
</td>
</tr>
}
Reply
Answers (
3
)
difference between if else and switch case
student marks program