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
tri_inn
NA
1.2k
233.9k
how to bind html controls without using MVC html helpers?
Mar 9 2015 11:08 AM
in mvc people generate html this way and bind data also
@using (Html.BeginForm())
{
<div>
@Html.LabelFor(m => p.Name, "Name:")
@Html.TextBoxFor(m => p.Name)
</div>
<input type="submit" value="Create" />
}
but if i do not want to use html helper extension then how should i code to bind normal html controls and forms with model data. please come with a sample code. thanks
Reply
Answers (
1
)
Enabling and disabling a button for a particular time
How to call database using javascript in asp.net?