我是C#的新手,因此我遇到了与控制器的图像链接问题。
我创建了这个将用户路由到控制器的链接。现在它是一个提交按钮,给出了单词"立即注册"但我没有这样做,而是想使用图像。我没有麻烦为一个简单的按钮创建链接,但无法弄清楚如何使用图像。
这是我的代码
@Html.SubmitButton("Sign Up Now!", OrdersController.AddSubscriptionRoute, new { pl=1, itemCode = Model.ItemCode, webId = Model.WebID, webCategoryId = Model.WebCategoryID, priceTypeId = Model.PriceTypeID }, null, ActionEmphasis.Callout)
我想使用图片
<img src="/_resources/images/content/callout.jpg" style="float:right">
答案 0 :(得分:0)
如果您希望将表单发布到特定操作,则只需要以下内容:
<form action="<%:Url.RouteUrl("Your Route Here");%>" method="post">
<!-- Html Input elements -->
<input type="image" src="/_resources/images/content/callout.jpg" style="float:right;" alt="Submit" />
</form>
如果您需要在表单上放置多个按钮,请考虑以下文章: