有 MVC 方式来做 ASCX 吗?
ASCX 是否仍在 ASP.NET MVC 中使用,还是我们应该使用其他东西?
Are ASCXs still used in ASP.NET MVC or should we be using something else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
ASCX 是否仍在 ASP.NET MVC 中使用,还是我们应该使用其他东西?
Are ASCXs still used in ASP.NET MVC or should we be using something else?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
是的,您仍然可以使用 .ascx。它们通常被称为部分视图。
Yes, you can still use .ascx. They are often referred to as partial views.
你敢打赌,我通常使用 ascx 来呈现某种类型的 ajax 功能的部分视图。虽然,正如 Jeffrey Palermo 指出除了扩展直接表明您正在使用部分视图之外,它们并没有增加太多价值。
You bet, I typically use an ascx to render a partial view for some type of ajax functionality. Although, as Jeffrey Palermo points out they don't add much value beyond the extension being a direct inclination that your are working with a partial view.
它们的伟大之处在于,
当您只对更改页面特定部分而不是整个页面的内容感兴趣时,您可以在控制器中使用这在 jQuery 调用中非常有效。
The great thing about them is that in your controller you can then use
This works great in a jQuery call when you are only interested in changing the contents of particular part of the page and not the whole page.