📄 search.ascx.cs
字号:
namespace NPetshop.Web.UserControls.Catalog
{
using System;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using NPetshop.Domain.Catalog;
using NPetshop.Presentation.Core;
using NPetshop.Presentation.UserActions;
/// <summary>
/// Description r閟um閑 de Search.
/// </summary>
public class Search : NPetshop.Presentation.UserControl
{
protected System.Web.UI.WebControls.LinkButton LinkButtonSearch;
protected System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidatorKeyword;
protected System.Web.UI.WebControls.TextBox TextBoxSearch;
private void Page_Load(object sender, System.EventArgs e)
{
// Placer ici le code utilisateur pour initialiser la page
}
private void LinkButtonSearch_Click(object sender, System.EventArgs e)
{
string keywords = TextBoxSearch.Text;
CatalogAction action = new CatalogAction(Context);
action.SearchProducts(keywords);
this.CurrentController.NextView = action.NextViewToDisplay;
}
#region Code g閚閞
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -