How do you implement auto-complete with ASP.NET, MVC3, and Razor?
相关问题
- Entity Framework throws exception - Network Relate
- Google places autocomplete suggestion without coun
- Slow loading first page - ASP.NET MVC
- TextBoxFor decimal
- How to do an inline style with asp.net mvc 3 razor
相关文章
- “Dynamic operations can only be performed in homog
- Set the z-index value of a jQuery autocomplete inp
- Change color of bars depending on value in Highcha
- How to get server path of physical path ?
- Breakpoint in ASP.NET MVC Razor view will not be h
- How to define function that returns html in asp.ne
- How to find the exceptions / errors when TryUpdate
- ASP.Net MVC 3: optgroup support in Html.DropDownLi
You could use jQuery UI Autocomplete control along with an mvc action that returns a JsonResult with the right data
This isn't using Razor but translating it from webforms to razor is pretty trivial: http://tpeczek.com/2010/05/jquery-autocomplete-in-aspnet-mvc.html