如果对象数据源未正确连接,如何获得编译失败?
我有一个大型棕色字段 Web 表单应用程序,它在各处都使用 ObjectDatasource 控件,这使得重构比应有的更加困难。
如果重命名对象或方法会导致 ObjectDataSource 不再工作,是否有办法获得编译时失败?在 MVC 中有编译视图的概念,Webform 是否有与此类似的概念?
I have a large brown field webforms app that uses ObjectDatasource controls all over the place, which makes refactoring more difficult than it should be.
Is there a way to get a comile-time failures if an object or method is renamed which would cause the ObjectDataSource no longer work? In MVC there is the notion of compiling views, is there a parallel to this for webforms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有简单的方法,不。 .ASPX 或 .ASCX 中定义的任何内容都是在运行时创建的。您唯一能做的就是尝试访问代码隐藏中的对象(假设是一个 Web 应用程序项目)并确保该项目编译正常。但这只能告诉您它是否在 .design 代码隐藏文件中正确定义;它不会帮助您在 .ASPX 或 .ASCX 文件中追踪对它的任何引用。
There is no easy way, no. Anything defined in .ASPX or .ASCX is created at runtime. The only thing you could do is attempt to access the object in codebehind (assuming a Web Application Project) and make sure the project compiles OK. But that only tells you if it's defined correctly in the .design code-behind file; it won't help you track down any references to it in .ASPX or .ASCX files.