大家好我想尝试做的是使用图像而不是按钮将值传递给控制器。 我已经使用按钮了解它。
<input type="submit" name="Vote" value="1" />
这有效,但是当我尝试使用按钮类型时,它无法说我发送了一个空参数。
<input type="image" src="imagepath" value="1" alt="1" name="Vote" />
如果有人能提供帮助,那将非常感谢。
答案 0 :(得分:0)
<input type="image" src="imagepath" value="1" alt="1" name="Vote" onclick="submit" />
但我认为你会因输入回车键而失去提交。
输入图像“有时”(?)只是发送图像的x和y坐标...
Input type="image"
无论如何都要避免提交按钮。
答案 1 :(得分:0)
为什么不使用Ajax?
@Ajax.RawActionLink("Text", "Action", "Controller", null, ajaxOptions, new { @class = "button green small" })