Click here to Skip to main content
15,896,154 members
Articles / Web Development / HTML

See Search Results As You Type - An ASP.NET AJAX Control

Rate me:
Please Sign up or sign in to vote.
4.21/5 (10 votes)
11 Apr 2008CPOL3 min read 134.9K   8.7K   67  
A search box that updates the page with search results as you type
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="RemyExamples._Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Remy's ASP.NET Code Examples</title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server" />
    <div>
    <h1>Remy's ASP.NET Examples in C#</h1>
    <a href="http://remy.supertext.ch">Back to Blog</a><br />
    
    <br />
    <a href="DelayedSubmitExample/Default.aspx">Delayed Submit Example</a><br />
    <p>This is similar to an Autocomplete Combobox, but normally just with a normal search result below it, instead of a complete in the Textbox.</p>

    <br />
    <a href="JavascriptPrint/index.html">Javascript Print</a>
    <p>Shows how to print a html web page with a little Javascript. Works like all these Print links that you see.</p>


    <br />
    <a href="ServerVariables/servervariables_example.html">ServerVariables</a>
    <p>Lists all Request.ServerVariables, some other Request objects and all Request.Browser properties.<br />
    The code in html is <a href="ServerVariables/servervariables_code.html">here</a>.<br />
    You can download the code file <a href="ServerVariables/ServerVariables.zip">here</a>, just change the extension to .aspx.<br />
    (I don't really wanna show all my server variables in realtime)</p>

    </div>
    </form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Web Developer
United States United States
Remy Blaettler (or Rémy Blättler in Swiss German writing) works as the Chief of the System for Supertext AG.

Supertext is the first online copywriting agency and has over 300 professional freelance writers, journalists, proofreaders and translaters in ints network.


Remy started dabbling with Computers when he was 12 on his fathers 286 PC with Basic, he soon moved to Turbo Pascal and then to C++. The last 3 years were dedicated to C# and some ASP.NET.

Comments and Discussions