So I found a nice tutorial to create a suggest box (something like google suggest),
but oh dear the back end is in PHP..
I tried convertors but none of them did the job.
Any Idea how does this code should look in C#? (asume it should be in the code behaind)
//Get our database abstraction file
require('database.php');
///Make sure that a value was sent.
if (isset($_GET['search']) && $_GET['search'] != '')
//Add slashes to any quotes to avoid SQL problems.
$search = addslashes($_GET['search']);
while($suggest = db_fetch_array($suggest_query)) {
//Return each page title seperated by a newline.
echo $suggest['suggest'] . "\n";
}