使用 ajax 帮助程序 BeginForm 的帮助程序
谁能说为什么我在自定义助手中使用的 BeginForm 方法在第一个文本框之前呈现此文本?
System.Web.Mvc.Html.MvcForm
它也正在工作! :) :(
我使用的代码如下:
// The helper signature
public static string Pagination(this HtmlHelper helper, int currentPage, int totalPages, string orderBy, string orderDirection, string listArea)
// Ajax helper declartion
AjaxHelper ajaxHelper = new AjaxHelper(helper.ViewContext, helper.ViewDataContainer);
// Form html generation
sb.Append(
ajaxHelper.BeginForm(
helper.ViewContext.RouteData.Values["action"].ToString(),
new AjaxOptions { UpdateTargetId = listArea, LoadingElementId = "loading" }
)
+ helper.TextBox("page")
+ helper.Hidden("orderBy", orderBy)
+ helper.Hidden("orderDirection", orderDirection)
+ "<input type=\"submit\" value=\"" + Localization.GetText("Go") + "\" /></form>"
);
Can anyone say why the method BeginForm that I use in a custom helper is rendering this text beforing the first text box?
System.Web.Mvc.Html.MvcForm
It's also working! :) :(
The code I use is the following:
// The helper signature
public static string Pagination(this HtmlHelper helper, int currentPage, int totalPages, string orderBy, string orderDirection, string listArea)
// Ajax helper declartion
AjaxHelper ajaxHelper = new AjaxHelper(helper.ViewContext, helper.ViewDataContainer);
// Form html generation
sb.Append(
ajaxHelper.BeginForm(
helper.ViewContext.RouteData.Values["action"].ToString(),
new AjaxOptions { UpdateTargetId = listArea, LoadingElementId = "loading" }
)
+ helper.TextBox("page")
+ helper.Hidden("orderBy", orderBy)
+ helper.Hidden("orderDirection", orderDirection)
+ "<input type=\"submit\" value=\"" + Localization.GetText("Go") + "\" /></form>"
);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在开始表单标记中使用“<%”而不是“<%=”!
Use '<%' not '<%=' in your begin form tag!