Beispiel #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            string fid      = this.reqString("id");
            string uid      = this.reqString("uid");
            string callback = this.reqStringSafe("callback");
            int    ret      = 0;

            if (string.IsNullOrEmpty(fid) ||
                string.IsNullOrEmpty(uid)
                )
            {
            }//参数不为空
            else
            {
                DBConfig cfg = new DBConfig();
                DBFile   db  = cfg.db();
                db.Delete(Convert.ToInt32(uid), fid);
                up6_biz_event.file_del(fid, Convert.ToInt32(uid));
                ret = 1;
            }
            this.toContentJson(callback + "(" + ret + ")");//返回jsonp格式数据
        }
Beispiel #2
0
 public static void Delete(int fileID)
 {
     DBFile.Delete(fileID);
 }
Beispiel #3
0
        public static void Delete(string fileURL, bool CheckForDelete)
        {
            int fileID = GetFileIDFromURL(fileURL);

            DBFile.Delete(fileID);
        }