Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

Lỗi : The resource cannot be found.

02:03 20-11-2017 7.102 lượt xem 3 bình luận 01:03 21-11-2017

Hiện tại em đang bị lỗi khi tạo mới một Controller là : 
 

Server Error in '/' Application.


The resource cannot be found.

Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly. 
 

Các Controller chứa các View cũ vẫn hoạt động bình thường. Nhưng khi tạo mới Controller và add 1 View thì lại xuất hiện lỗi như thế này. Đã thử các cách bằng tra Google nhưng lại không được ạ.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Data.Entity;
using QuanLyNhaAnWeb.Models;
using System.IO;

namespace QuanLyNhaAnWeb.Controllers
{
    public class TESTController : Controller
    {
        // GET: TEST
        public ActionResult Index()
        {
            return View();
        }
    }
}

 


@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
</head>
<body>
<div>
    TEST
</div>
</body>
</html>

Em xin cảm ơn ạ.

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
K9 SuperAdmin, KquizAdmin, KquizAuthor đã bình luận 13:20 20-11-2017

cái này check kỹ lại trong folder View có cái TEST/Index k
chủ yếu đường dẫn thôi. nó khong tự nhiên bị mấy lỗi này đau

Câu hỏi mới nhất