Try your search with a different keyword or use * as a wildcard.
@model CatalogProductsModel
@if (!string.IsNullOrEmpty(Model.WarningMessage))
{
@Model.WarningMessage
}
@if (Model.Products.Count > 0)
{
@foreach (var product in Model.Products)
{
@await Html.PartialAsync("_ProductBox", product)
}
var pager = Html.Pager(Model)
.QueryParam("pagenumber")
// for search page
.BooleanParameterName("advs")
.BooleanParameterName("isc")
.BooleanParameterName("sid")
.RenderEmptyParameters(true);
@if (!await pager.IsEmpty())
{
@pager
}
}
else if (!string.IsNullOrEmpty(Model.NoResultMessage))
{
@Model.NoResultMessage
}