ASP .NET Web 服务应用程序的安装选项
我正在尝试使用 Visual Studio 2005(版本 8.0.50727.42)创建 ASP .NET Web 服务应用程序。不幸的是,我没有任何选项来创建这样的项目。我猜这与 Visual Studio 安装选项有关。
我只启用组件 Visual C#、Visual Web Developer 和 SQL server 2005。我希望这足够了。这样可以吗,或者我应该选择默认安装选项。
这是设置问题还是问题出在其他地方?
I am trying to create an ASP .NET Web Service Application using Visual Studio 2005 (Version 8.0.50727.42). Unfortunately, I do not get any options for creating such a project. I am guessing it has to do with Visual Studio installation options.
I am only enabling the components Visual C#, Visual Web Developer and SQL server 2005. I am hoping this would be enough. Is this ok, or should I go for default installation options.
Is this even a setup issue, or does the problem lie elsewhere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Web 服务应用程序只是一个具有 .asmx“服务”而不是 .aspx“页面”的 Web 应用程序。
一旦您有了 Web 应用程序,添加服务的选项应该与添加“表单”或页面的位置大致相同。
方法需要适当地注释,但仅此而已。
当然...理想情况下,您希望创建 WCF 服务而不是 Web 服务,但同样在理想情况下,您至少会使用 VS2008 和 .NET 3.5SP1。
A web service application is just a web application with .asmx "services" instead of .aspx "pages".
Once you've got a web application the option to add a service should exist in about the same place as to add a "form" or a page.
Methods need to be annotated appropriately but there's not a lot more to it than that.
Of course... ideally you'd want to be creating WCF services rather than web services but equally in an ideal world you'd be using at least VS2008 and .NET 3.5SP1.
我必须安装 Visual Studio Service Pack 1。这对我来说已经完成了工作。
I had to install Visual Studio Service Pack 1. This did the job for me.