string sql1 = "select  top 1 UserID from EQO_Manage order by UserID desc";
        SqlCommand cmd1 = new SqlCommand(sql1, con);
        cmd1.ExecuteNonQuery();
        string[] str = ecwid.Split(',');
        for (int j = 0; j < str.Length - 1; j++)
        {
            UrlComm.sqlComm("update EQO_EcwOwer set UserID='" + UserID + "' where ECWID='" + str[j] + "'");
        }
我现在是想获取sql1的值然后放到更新UsrID中   各位帮帮忙