我正在尝试使用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的概率相同。
我该怎么办?
答案 0 :(得分:1)
要创建Windows窗体应用程序,您需要System.Windows.Forms
命名空间来构建UI。
查看this tutorial有关如何使用Web服务的信息;假设你没有创建服务,你应该从第2步开始(在我链接的页面的中间)。