Exemplo n.º 1
0
        public static WebForm Instance(string url)
        {
            if (sForm == null)
            {
                sForm = new WebForm(url);
            }

            else
            {
                sForm.Close();
                sForm = new WebForm(url);
            }

            return(sForm);
        }