Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search engine - need to display results on separate page

Status
Not open for further replies.

rootl

Technical User
May 20, 2014
7
US
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);
}
 
Why do you need it to show in a different page?

Why not just use a multiview control and show the results in a separate view?
 
You are right - thanks I will put it into a different view. Much easier solution. Thanks :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top