AjaxControlToolkit.PopupControlExtender.Commit C# (CSharp) 메소드

Commit() 공개 메소드

Commits the popup control and hides it applying the specified result
public Commit ( string result ) : void
result string Result
리턴 void
        public void Commit(string result)
        {
            // It is possible for Commit() to be called numerous times during the same postback so we just remember the desired state
            _closeString = result;
            _shouldClose = true;
        }