Greetings,
I have a search engine working well which uses a Repeater control to display results. I need to be able to have the results (using repeater) show on a separate page using Response.Redirect or something similar.
The search button code is below. Thanks.
protected void btnSearch_Click(object sender, EventArgs e)
{
// Turn user input to a list of keywords.
string[] keywords = tbKeyWords.Text.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);
// The basic validation.
if (keywords.Length <= 0)
{
lbAlert.Text = "Please input keyword.";
return;
}
this.keywords = keywords.ToList();
// Do search operation.
DataAccess dataAccess = new DataAccess();
List<Article> list = dataAccess.Search(this.keywords);
ShowResult(list);
}
I have a search engine working well which uses a Repeater control to display results. I need to be able to have the results (using repeater) show on a separate page using Response.Redirect or something similar.
The search button code is below. Thanks.
protected void btnSearch_Click(object sender, EventArgs e)
{
// Turn user input to a list of keywords.
string[] keywords = tbKeyWords.Text.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);
// The basic validation.
if (keywords.Length <= 0)
{
lbAlert.Text = "Please input keyword.";
return;
}
this.keywords = keywords.ToList();
// Do search operation.
DataAccess dataAccess = new DataAccess();
List<Article> list = dataAccess.Search(this.keywords);
ShowResult(list);
}