using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WindowsApplication2
{
public partial class Form1 : System.Web.UI.Page
{
public Form1()
{
InitializeComponent();
}
这么写为什么说:没有用于System.Web.UI.Page类的设计器?
SMILET