问题描述
对于一个 Web 应用程序,我正在使用 ASP.NET C#(OS-Windows7、.NET 4)并且任务已经完成.但我不知道如何在 Windows7 以及 Server 2008 中本地运行它(.NET 4 和 IIS 安装在服务器 2008 中).而且我必须在两个平台中运行它.所以请提供任何帮助.非常感谢.
For a web application I am using ASP.NET C# (OS- Windows7, .NET 4) and the task has done. But I don't know how to run it locally in Windows7 as well as in Server 2008(.NET 4 and IIS installed in server 2008). And I have to run it in both the platfrom. So any help please. Thanks a lot.
推荐答案
如果你的 Win 7 机器上安装了 IIS 7,那么:
If you have IIS 7 installed on your Win 7 machine, then:
- 在 VS.NET 中打开你的项目
- 在解决方案资源管理器中右键单击项目节点并选择属性"
- 切换到网络"标签.
- 选择单选使用本地 IIS 网络服务器"
- 点击创建虚拟目录"按钮
这负责让您的应用程序使用 IIS 运行.您还可以像这样开发/调试 ASP.NET 应用程序.
That takes care of getting your application to run using IIS. You can also develop/debug ASP.NET applications like this.
关于部署 ASP.NET 应用程序,请确保已安装所有先决条件.您需要使用 IIS 管理器创建网站并将该网站与应用程序池相关联.
As regards, deploying your ASP.NET application, after making sure all pre-requisites are installed. You'll need to use IIS Manager to create a website and associate that website to an application pool.
这篇关于如何在本地运行 ASP.NET C# Web 应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!