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
srujana thallam
NA
76
138.8k
how to get the model values in controller
Oct 20 2014 9:26 AM
My model class
public
class Hop
{
public
string Name
{
get; set;
}
}
public
class Home
{
public
IEnumerable<Hop>
selHopList
{
get; set;
}
}
my
controller
------------
[
HttpPost
]
public
ActionResult CreateHop
(
Home
hopValues
)
{
Ienumarable list=
hopValues.selHopList;
//like this i want get
return
View
(
);
}
In my controller
i
want to get these values how?
can
any one
help me
.
Reply
Answers (
1
)
Spell Checker for Rich Textbox
Need Help...