ASP.NET Search form

  • Thread starter Thread starter kids_pro
  • Start date Start date
K

kids_pro

I am trying to implement a simple ASP.net application.
1. Design a search.aspx page where user can select various criteria from
dropdownlist (load info from database)
2. Once user click on Search form action = "result.aspx" (problem it won't
post to result.aspx????)
3. In result.aspx page I want display result in DataGrid (this is not a
problem)

How can I post from one page to another in ASP.NET form.

Regards,
Kids
 
Hi Kids!!!
You can simply use
Response.Redirect("the_page_i_want_ to_open.aspx");
Mohamed Mahfouz
MEA Developer Support Center
ITworx on behalf of Microsoft EMEA GTSC
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top