我是 asp.net mvc 的新手。我正在使用 Asp.net mvc2 开发一个简单的应用程序。我创建了一个控制器,它将获取用户输入并显示它。当我运行我的应用程序时,它向我显示了这个错误。我的代码如下。
Server Error in '/' Application.
The resource cannot be found.
控制器:
[HttpPost]
public ActionResult DisplayCustomer(Customer obj)
{
return View("DisplayCustomer",obj);
}
查看:
<% using (Html.BeginForm("DisplayCustomer","test1",FormMethod.Post))
{ %>
Enter customer id :- <%= Html.TextBox("Id",Model)%> <br />
Enter customer code :- <%= Html.TextBox("CustomerCode",Model) %><br />
Enter customer Amount :- <%= Html.TextBox("Amount",Model) %><br />
<input type="submit" value="Submit customer data" />
<%} %>
型号:
public class Customer
{
private string _Code;
private string _Name;
private double _Amount;
public string Code
{
set
{
_Code = value;
}
get
{
return _Code;
}
}
public string Name
{
get
{
return _Name;
}
set
{
_Name = value;
}
}
public double Amount
{
set
{
_Amount = value;
}
get
{
return _Amount;
}
}
}
我正在运行我的应用程序/test1/DisplayCustomer
。我浏览了网络来解决它,但我没有得到任何解决方案。请让我知道我哪里出错了。