SearchHi.NET

A project by goloroden.de

Arrow searchhi.js

SearchHi.NET was inspired by Stuart Langridge's searchhi.js script.

Illustration

For further details, see searchhi.js.

Arrow Partner sites

goloroden.de
codeparser.net


Arrow Documentation

Using SearchHi.NET is really simple - every code-behind file of the web application needs to inherit from the base class SearchHi.NET.Page instead of System.Web.UI.Page.

C#
1
2
3
4
5
6
7
8
9
using System;

public partial class _Default : SearchHi.NET.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
}
Additionally, there must be a class called SearchKey within the web application's CSS file that defines the style of the found search keys.
CSS
1
2
3
4
.SearchKey
{
    background-color:Yellow;
}