Beispiel #1
0
        public ActionResult WinUserMore_SaveAuthorsDirectMethod(long lUserID, string sSelAuthors, string sSetAuthors, string sOriginAuthors, string PanelID)
        {
            UserInfoManage userMan = new UserInfoManage();

            if (sSetAuthors == "0")
            {
                userMan.SaveNowAuthor(lUserID, sSelAuthors, sOriginAuthors);
            }
            else
            {
                userMan.SaveNowAuthor(lUserID, sSetAuthors, sOriginAuthors);
            }
            SetHiddenValue(PanelID + "_ExitCode", "1");
            return(this.Direct());
        }