Hello,
I am currently developing a web application in asp dotnet mvc 4 razor.
I would like to create a search engine (or maybe a filter) for this application.
In fact, I have one table: Patients (Name, Surname, Age, Email). And in my view, I will list all the patients that I recorded with my form. I would therefore like to make a search engine that will allow me to search for patients according to its name and surname.
Thank you.
Ramsès Zogning IIPosted Mar 18, 2015, 1:57 AM
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.
Francis SusaimichaelPosted Mar 17, 2015, 10:24 PM