我可以将 Visual Basic 项目网站页面合并到 Visual C# 项目中并使它们成为单个项目吗?
我有两个 Web 项目,一个来自 C#.net,另一个来自 vb.net。意味着在创建项目时我选择项目为 Visual Basic &视觉 C#。我可以将 Visual Basic 项目网站页面合并到 Visual C# 项目中并使它们成为单个项目吗?
谢谢
I have two web projects one from C#.net and another from vb.net. Means while creating project i selected project as Visual Basic & Visual C#. Can i combine the Visual Basic project web site pages in Visual C# project and make them single project?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该项目设置为使用特定编译器进行编译...您想要 c# 或 vb...所以您必须将 c# 分离到它自己的项目中...并将 vb 分离到它自己的项目中。有一点需要注意。如果您不使用页面后面的代码,您可以将 C# 和 vb 的 aspx 页面放在同一个项目中,因为它们是动态编译的...及时...;-)
The project is set to compile using a specific compiler... c# or vb which do you want... so you have to separate the c# into its own project... and the vb in it own project. There is one caveat. You CAN put aspx pages that are C# and vb in the same project if you don't use code behind pages because they are compiled on the fly... just in time... ;-)