How to run ASP.NET C# web application locally?(如何在本地运行 ASP.NET C# Web 应用程序?)
问题描述
对于一个 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 应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在本地运行 ASP.NET C# Web 应用程序?


- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01