你可以發佈你的控制器文件和你的視圖文件。
This Works;
MytestController --------------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;
namespace testapp.Controllers
{
[ValidateInput(false)]
public class MyTestController : Controller
{
public ActionResult Index()
{
return View();
}
}
}
MyTest的(指數) - -------------------------------------------------- ---
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Index</title>
</head>
<body>
<% using (Html.BeginForm()) { %>
<%= Html.TextBox("test")%>
<button type="submit" >Submit</button>
<%} %>
</body>
</html>
根據上面這些不工作的東西,你就必須提供更多的細節。你是在IIS還是Cassini中運行?你正在運行MVC v1.0,對嗎?失敗行爲的方法簽名是什麼? – GalacticCowboy 2009-07-10 17:25:01
我很喜歡當我找到有人問我確切的問題 - 只有看到它因爲不適用於其他訪問者而關閉。 FML。 – 2013-04-29 18:58:22