views:

84

answers:

2

I want to create Stackoverflow like Question Asking Functionality.

I have noticed as soon as cursor is move from Title textbox to Question, it is showing related links, without doing page postback. I want to doo something similar to that.

How can I perform this?

+1  A: 

Use ajax.

When the title loses focus, use an ajax call to get related info and then show the results.

Sam
You may want to include some background on AJAX in case the OP doesn't already know what it means/how it works.
Justin Niessner
@Justin Niessner, I think the OP can use search tools to find out what AJAX is once he knows that's the route to go.
Sam
+1  A: 

Also, use jquery! A useful library when dealing with AJAX.

Manux