使用VS2010创建Web应用程序

时间:2013-09-05 00:38:37

标签: c# visual-studio-2010 web-application-project .net-framework-version

我正在尝试使用VS 2010(.netframework 4.0)为A窗体应用程序编写GUI代码。但是当将UI包含在:

中时
using System.Web.UI; 
using System.Web.SessionState;
它告诉我

the type or namespace name 'UI' does not exist in the namespace System.Web

和sessionstate的概率相同。

我该怎么办?

1 个答案:

答案 0 :(得分:1)

要创建Windows窗体应用程序,您需要System.Windows.Forms命名空间来构建UI。

查看this tutorial有关如何使用Web服务的信息;假设你没有创建服务,你应该从第2步开始(在我链接的页面的中间)。