我想在锚中发送 id 和字符串
<a id="senurl" href="/Admin/Coupon1/Reject/@Model.id" class="btn">Reject Coupon</a>
或者做这个拒绝优惠券
**action**
public ActionResult Reject(int id, string ChangeId){
}
或者做这个拒绝优惠券
我想在锚中发送 id 和字符串
<a id="senurl" href="/Admin/Coupon1/Reject/@Model.id" class="btn">Reject Coupon</a>
或者做这个拒绝优惠券
**action**
public ActionResult Reject(int id, string ChangeId){
}
或者做这个拒绝优惠券
使用Html.ActionLink
而不是手动创建 URL。它更干净,处理相对路径,并考虑注册的路线。
例子:
@Html.ActionLink(
"Reject Coupon",
"Reject",
new { id = Model.id, ChangeId = "foo" } )
如果您想要更多控制,您可以生成与锚点分开的 URLUrl.Action
你可以用这个
<a href='@Url.Action("Reject", "controllername",
new { id = Model.id, ChangeId = "foo" })'>
Hello</a>
如果你想使用 html