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 应用程序?


基础教程推荐
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01