Click here to Skip to main content
15,887,485 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Expert,


I am uday satardekar,


I am developing asp.net website.There is one page called view_event.aspx.


This page contain 4 combobox status,country,category and date.

Now depends upon users choices(as above),when user click Button(Show) ,i have to display associated results on same page, just below the Button(Show)

which control is best for this?

and

how to reduce the response time when user click show button ? Because when user click page will be refresh each time.


Thankssssssss in advance.
Posted
Updated 5-Oct-11 21:00pm
v2
Comments
Mehdi Gholam 6-Oct-11 3:01am    
EDIT->Removed bold tags

Hi,

Use Jquery or Ajax update panel.

I prefer Jquery only b'coz easy to learn and easy to use.

you can make magic with jquery.

for posting and retrieving information to/from page just use any of these $.post()
or $.get() method without page refreshing

Step into Jquery

Here is the link for learn Jquery.

http://www.impressivewebs.com/jquery-tutorial-beginners.pdf
there are too much stuff in net browse that


All the Best
 
Share this answer
 
v2
Comments
udusat13 6-Oct-11 3:26am    
Thankssssssss for your valuable suggestion
You can use pure Ajax to make request and prevent page to making it post back.
alternative options are Jquery and Ajax Update Panel.

Using Update Panel you can use,asynchronous post back and partial post back the page using event of particular button.

You can refer MSDN in case of details about how to use Ajax Update Panel.

Jquery will not work in case of Java script disable in browser.

To reduce response time, make sure you will reduce the http request in page and get all the data required in single request depends on your situation.
 
Share this answer
 
Comments
udusat13 6-Oct-11 3:26am    
Thankssssssss for your valuable suggestion

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900