You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Search.cshtml 923B

1 year ago
1234567891011121314151617181920212223
  1. @using Karsha_Site.Application.Services.Common.Queries.GetCategory;
  2. @model List<CategoryDto>;
  3. @{
  4. Layout = null;
  5. }
  6. <form asp-action="Index" asp-controller="Products" class="form-search">
  7. <input type="search" class="header-search-input" name="SearchKey" placeholder="نام کالا، برند و یا دسته مورد نظر خود را جستجو کنید…">
  8. <div class="action-btns">
  9. <button class="btn btn-search" type="submit">
  10. <i class="fa fa-search"></i>
  11. </button>
  12. <div class="search-filter">
  13. <div class="form-ui">
  14. <div class="custom-select-ui">
  15. <select class="right" name="CatId" asp-items="@(new SelectList(Model,"CatId","CategoryName"))">
  16. <option>همه دسته ها</option>
  17. </select>
  18. </div>
  19. </div>
  20. </div>
  21. </div>
  22. </form>