摘要: public string SQL = "select * from Memorandum"; protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { ViewState["SQL"] = SQL; BindData(); } if (Request.QueryString["MId"] != null) ... 阅读全文