是否可以创建“空解决方案”?使用 Visual Web Developer 2010 Express?
是否可以使用 Visual Web Developer 2010 Express 创建“空解决方案”?在我看来,使用 VWD 2008 SP1 Express 可以做到这一点。
需要配置什么才能获得空解决方案吗?或者类似的东西,以便我可以为新应用程序获得多个解决方案?我有 VS2008 专业版,我想在获得 VS2010 专业版之前切换到 VWD 2010 Express。
感谢您的帮助
s it possible to create an "Empty Solution" with Visual Web Developer 2010 Express? It looks to me like that was possible to do so with VWD 2008 SP1 Express.
Anything to configure to get an empty solution? Or something similar, so that I can get more than one solution for a new application? I've VS2008 professional and I'd like to switch to VWD 2010 Express before I'm able to get VS2010 Professional edition.
Thanks for helping
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,确定您将在其中构建解决方案的文件夹位置。
然后在 VWD 2010 Express 中,从“文件”菜单创建一个“新项目”。选择您的首选语言(即 C#)下的 Windows 模板并突出显示类库。命名您的类(即“域”),然后您可以选择为解决方案文件夹设置基目录“创建新解决方案”,并提供“解决方案名称”和“为解决方案创建目录”。
然后您可以使用文件->添加...菜单选项可将资源添加到您的解决方案中。
First, identify a folder location in which you will build solutions.
Then in VWD 2010 Express, create a New Project from the File menu. Select the Windows templates under your preferred language (ie C#) and highlight Class Library. Name your Class (ie, "Domain") and below that you have options to set your base directory for the solution folder, 'Create new solution', and provide a 'Solution name' with the 'Create directory for solution'.
You can then use the File -> Add... menu option to add resources to the your solution.
我自己也遇到了这个问题
如果我理解你的问题是正确的,这就是你想做的。
转到文件 ->新项目-> (在“已安装的模板”下)单击并展开所需的语言(VB 或 C#)->点击网页->然后向右转到 ASP.NET 空 Web 应用程序。这将创建必要的属性、引用和 Web.config 文件。
然后只需点击文件->新文件... ->点击所需语言->点击网页->并选择您想要包含的内容。在你的情况下是一个网络表单。
就是这样。
I came into this problem myself
If I understand you question right this is what you want to do.
Go to File -> New Project -> (under Installed Templates) click and expand desired language (VB or C#) -> click on Web -> and to the right go down to ASP.NET Empty Web Application. That will create the necesary Properties, References, and the Web.config files.
Then just click on File -> New File... -> Click on desired language -> Click on Web -> and select what you want you include. in your case a Web Form.
That is it.