ActivEarth.Groups.GroupsSearch.SearchGroups C# (CSharp) Метод

SearchGroups() защищенный Метод

Method called when the Search button is clicked. Redirects the user to a new Search page using the text in the searchBox as the search term.
protected SearchGroups ( object sender, EventArgs e ) : void
sender object
e EventArgs
Результат void
        protected void SearchGroups(object sender, EventArgs e)
        {
            if (searchBox.Text.Length > 0)
                Response.Redirect("~/Groups/GroupsSearch.aspx?Term=" + searchBox.Text);
        }