我的ASP.NET MVC视图中a标签中同时存在href和onclick属性,href里面的参数不能成功传递到控制器里面
<ahref="/Backstage/ExcellentStaffVote/Introduction?id=@star.Star_EmployeeID"onclick="...
<a href="/Backstage/ExcellentStaffVote/Introduction?id=@star.Star_EmployeeID" onclick="openuser(19,3);"><img src="~/Content/Backstage/images/vote.gif" border="0"></a>
控制器:
public ActionResult Introduction()
{
int StarId = Convert.ToInt32(Request["id"]);
......
}
这里StarId取不到值 展开
控制器:
public ActionResult Introduction()
{
int StarId = Convert.ToInt32(Request["id"]);
......
}
这里StarId取不到值 展开
2个回答
展开全部
你在你的控制器上面加上
[httpGet] or [httpPost]
public ActionResult Introduction(int id)
{
}
再打个断点测试下
[httpGet] or [httpPost]
public ActionResult Introduction(int id)
{
}
再打个断点测试下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询