在点击运行项目时,生成成功.但是页面没有弹出来,弹出个提示框,无法连接到 ASP.NET Development Server. 网上我看到说关闭掉防火墙,可是再关掉防火墙后还是不行.但是其他的项目又能跑起来,所以估计是端口号被占用了. 最后的解决方案是: 项目右键属性,在属性窗口,将使用动态端口号将true 改成false,然后修改端口号. 如果启动网站调试,还是不行,那就再改一个端口号,直到可以跑起来为止,别输入常用的端口号.…
转自:http://blog.csdn.net/xinyaping/article/details/7331375 很多人在论坛里说,在Visual Studio 2010中不能创建“ASP.Net Web Service”这种project了,下面跟帖者云云,有的说这是因为微软已经将Web Service整合进WCF,也有的提出一种先将.Net Framework Target设置为3.5的一种很“Tricky”的作法,其实这些说法是不准确的.微软确实用WCF整合了Web Service,但并…
https://msdn.microsoft.com/en-us/library/ee532866.aspx The topics in this section provide information about ASP.NET 4 and the Web development tools in Visual Studio. ASP.NET Overview Provides general information about ASP.NET and discusses factors th…
第一步:创建一个“ASP.Net Empty Web Application”项目 第二步:在项目中添加“Web Service”新项目 第一步之后,Visual Studio 2010会创建一个仅含一个站点配制文件(Web.config)的空站点,其余的什么也没有. 我们在Visual Studio 2010的Solution Explorer中,选中当前的这个project,添加新项目(右键菜单:Add --> New Item),选择“Web Service”这种类型: 看到这里读者应该就…