我正在处理一个包含多个块的页面。我有那个顺序: -带有其他信息的名称块 -多评论块 -地址块
用户应该有可能在多注释块中添加带有按钮的注释,并使用页面底部的按钮保存其他块中的所有其他数据(名称和地址)。
因此,多注释块是一种表单,嵌套在整个页面的表单中。它不会工作。您有没有帮助我的想法,而无需更改用户界面?
答案 0 :(得分:0)
可以在输入元素的“ formaction”属性的同一表单上使用2个不同的动作!
<input type="submit" name="submit" value="Ajouter un commentaire" formaction=@Url.Action("AddHotlinerComment") formmethod="post" class="btn btn-primary" />
<input type="submit" name="submit" value="Appliquer les modifications" formaction=@Url.Action("Update") formmethod="post" class="btn btn-primary" />
所以,它解决了:)