asp.net 4.0 webforms 是否有 url 和表单数据绑定?
我不知道这叫什么。如果知道它叫什么,您可以编辑这篇文章。
asp.net mvc 允许您执行此操作:
public ActionResult Index(FormCollection fc)
{
Item.Add(fc);
return View();
}
在 MVC 中,FormCollection 对象会自动填充相关数据,这很好。 asp.net webforms中有类似的东西吗?
I am not sure what this is called. If know know what it's called you can edit this post.
asp.net mvc allows you to do this:
public ActionResult Index(FormCollection fc)
{
Item.Add(fc);
return View();
}
It is nice that in MVC the FormCollection object is automatically populated with the relevant data. Is there anything like this in asp.net webforms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
Request.Form
属性。Use the
Request.Form
property.