private void Page_Load(object sender, System.EventArgs e)
{
string AutoID = String.Empty;
Request.QueryString["cheID"].ToString();if(!IsPostBack)
{
SqlConnection con = DataCon.AutoCon();
con.Open();SqlDataAdapter sdz = new SqlDataAdapter("AutoParameter_GetList " + AutoID,con);
DataTable dt = new DataTable();
sdz.Fill(dt);
if(dt.Rows.Count == 0) return;
this.par_id.Text = dt.Rows[0]["AutoID"].ToString();
this.par_nd.Text = dt.Rows[0]["Par_Year"].ToString();
this.par_1.Text = dt.Rows[0]["Par_xiangshi"].ToString();