Beispiel #1
0
        public async Task <IActionResult> OnGetAsync(string quote, string tag, string order, int pageid)
        {
            atNames = await _tag.GetAllNamesAsync();

            navPage = await _navpage.GetSearchAsync(quote, tag, order, pageid);

            Shows = await _show.GetSearchAsync((navPage.CurPage - 1) * 25, 25, quote, tag, order);

            Quote = quote;
            Order = order;
            Tag   = tag;
            return(Page());
        }