﻿/// <reference path="jquery-1.3.2-vsdoc.js/>

$().ready(function() {

    $.ajax({
        type: "POST",
        url: "/Ajax.aspx",
        data: "random=1",
        success: function(resp) {
        $('#search_result').html(resp);
        }
    });
});