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
Ramsès Zogning II
NA
84
20.8k
ASP.NET MVC 4 - Entity Framework Search with AJAX
Mar 20 2015 7:53 AM
Hello,
I am currently developing a web application in asp dotnet mvc 4 razor.
I would like to make a search engine (like a filter) for this application.
To make it clearer, here is my Model :
My model
: One table
Patients
public DbSet<
Patient
>
Patients
{ get; set; }
public class
Patient
{
public int MaladeID
{ get; set; }
public string Name
{ get; set; }
public string Surname
{ get; set; }
public string Age
{ get; set; }
public string Email
{ get; set; }
}
In fact, with a form, I record of patients who whose data is stored in the database.
I would among other patients develop a search engine. In this search engine, the keywords to be entered in the search bar will be names and surnames.
I also want to use Ajax to the results to be instantly displayed below the search engine (search bar)
Thank you for your help.
Reply
Answers (
1
)
Client found response content type of 'text/html; charset=ut
Asp.net MVC