ASP.NET VS2010 好像命名空间有问题
using System;using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
Random random = new Random(); //声明随机类对象
public partial class DL : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
lblCheckCode.Text = random.Next(1000, 9999).ToString();
}
}
错误 1 命名空间不能直接包含字段或方法之类的成员
错误 2 应输入 class、delegate、enum、interface 或 struct