Ошибка сервера в приложении '/' - Этот ресурс не может быть найден - PullRequest
1 голос
/ 13 марта 2010

Я новичок в ASP.NET MVC 2. Я не понимаю, почему я получаю эту ошибку. Что-то не хватает, что я не ссылаюсь правильно.

Я пытаюсь создать простое текстовое поле онлайн-поиска с автозаполнением jquery и просмотреть сведения о выбранном мной человеке

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;
using DOC_Kools.Models;

namespace DOC_Kools.Controllers
{
    public class HomeController : Controller
    {
        private KOOLSEntities _dataModel = new KOOLSEntities();

        //
        // GET: /Home/

        public ActionResult Index()
        {
            ViewData["Message"] = "Welcome to ASP.NET MVC!";

            return View();

        }

        //
        // GET: /Home/

        public ActionResult getAjaxResult(string q)
        {
            string searchResult = string.Empty;

            var offenders = (from o in _dataModel.OffenderSet
                             where o.LastName.Contains(q)
                             orderby o.LastName
                             select o).Take(10);

            foreach (Offender o in offenders)
            {
                searchResult += string.Format("{0}|r\n", o.LastName);
            }

            return Content(searchResult);
        }

        [AcceptVerbs(HttpVerbs.Post)]
        public ActionResult Search(string searchTerm)
        {
            if (searchTerm == string.Empty)
            {
                return View();
            }
            else
            {
                // if the search contains only one result return detials
                // otherwise a list
                var offenders = from o in _dataModel.OffenderSet
                                where o.LastName.Contains(searchTerm)
                                orderby o.LastName
                                select o;

                if (offenders.Count() == 0)
                {
                    return View("not found");
                }

                if (offenders.Count() > 1)
                {
                    return View("List", offenders);
                }
                else
                {
                    return RedirectToAction("Details",
                        new { id = offenders.First().SPN });
                }
            }
        }


        //
        // GET: /Home/Details/5

        public ActionResult Details(int id)
        {
            return View();
        }

        //
        // GET: /Home/Create

        public ActionResult Create()
        {
            return View();
        }

        //
        // POST: /Home/Create

        [AcceptVerbs(HttpVerbs.Post)]
        public ActionResult Create(FormCollection collection)
        {
            try
            {
                // TODO: Add insert logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }

        //
        // GET: /Home/Edit/5

        public ActionResult Edit(int id)
        {
            return View();
        }

        //
        // POST: /Home/Edit/5

        [AcceptVerbs(HttpVerbs.Post)]
        public ActionResult Edit(int id, FormCollection collection)
        {
            try
            {
                // TODO: Add update logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }

        }

        public ActionResult About()
        {
            return View();
        }

    }
}

    using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;

namespace DOC_Kools
{
    // Note: For instructions on enabling IIS6 or IIS7 classic mode, 
    // visit http://go.microsoft.com/?LinkId=9394801

    public class MvcApplication : System.Web.HttpApplication
    {
        public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapRoute(
                "Default",                                              // Route name
                "{controller}/{action}/{id}",                           // URL with parameters
                new { controller = "Home", action = "Index", id = "" }  // Parameter defaults
            );

            routes.MapRoute(
                "OffenderSearch",
                "Offenders/Search/{searchTerm}",
                new
                {
                    controller = "Home",
                    action = "Index",
                    searchTerm = ""
                }
                        );
            routes.MapRoute(
                "OffenderAjaxSearch",
                "Offenders/getAjaxResult/",
                new { controller = "Home", action = "getAjaxResult" }
                );


        }

        protected void Application_Start()
        {
            AreaRegistration.RegisterAllAreas();

            RegisterRoutes(RouteTable.Routes);
        }
    }
}

    <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<DOC_Kools.Models.Offender>" %>

<asp:Content ID="indexTitle" ContentPlaceHolderID="TitleContent" runat="server">
    <script src="../../Scripts/jquery.autocomplete.js" type="text/javascript"></script>
    <script src="../../Scripts/jquery-1.3.2.js" type="text/javascript"></script>

 <script type="text/javascript">

     $(document).ready(function() {
         $("#searchTerm").autocomplete("/Offenders/getAjaxResult/");
     });

 </script>
    Home Page

</asp:Content>

<asp:Content ID="indexContent" ContentPlaceHolderID="MainContent" runat="server">
    <h2><%= Html.Encode(ViewData["Message"]) %></h2>


        <h2>Look for an offender</h2>

    <form action="/Offenders/Search" method="post" id="searchForm">
        <input type="text" name="searchTerm" id="searchTerm" value="" size="10" maxlength="30" />
        <input type="submit" value="Search" />

    </form>
    <br />



</asp:Content>

что мне нужно сделать, чтобы поиск по текстовому полю отображался на странице индекса? Что еще мне нужно сделать, чтобы автозаполнение работало правильно. у меня есть autocomplete.js & jquery.js, добавленный в представление index.aspx

Буду признателен за любую помощь, чтобы я мог получить эту работу.

Спасибо!

1 Ответ

0 голосов
/ 08 апреля 2010

может быть, это порядок маршрутов в global.asax? попробуйте изменить порядок я думаю, что он пытается найти правильные маршруты от первого до последнего, и в вашем случае он всегда останавливается на первом маршруте: "{controller} / {action} / {id}" ...

...