示例#1
0
 public ActionResult ModifyDraftMessage(string draftid, string draftmsg)
 {
     User objUser = (User)Session["User"];
     Api.Drafts.Drafts ApiobjDrafts = new Api.Drafts.Drafts();
     string retmsg= ApiobjDrafts.UpdateDraftsMessage(draftid, objUser.Id.ToString(), Session["group"].ToString(), draftmsg);
     return Content(retmsg);
 }
        public ActionResult ModifyDraftMessage(string draftid, string draftmsg)
        {
            Domain.Myfashion.Domain.User objUser      = (Domain.Myfashion.Domain.User)Session["User"];
            Api.Drafts.Drafts            ApiobjDrafts = new Api.Drafts.Drafts();
            string retmsg = ApiobjDrafts.UpdateDraftsMessage(draftid, objUser.Id.ToString(), Session["group"].ToString(), draftmsg);

            return(Content(retmsg));
        }