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 应用程序?
基础教程推荐
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- WPF 模态进度窗口 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
