Hi
could someone help me or guide on how to do this,
I have a home page with a search button(kinda like ebay)
if there is not search criteria entered it will just redirect to default page.
if the user types nokia phone for example i need to genereate a gridview with all the results that match that..I can call a method to do that but it has to be displayed in another page..
protected void _btnSearch_Click(object sender, EventArgs e);
{
_txtSearch.text =_txtSearch.text.trim;
if (_txtSearch.text.lenght <=0){
}
else {
Response.Redirect(Pages.TradeUp.Default);
}
does this look right or what am i missing?