﻿// JScript 文件
function goAjax()
{
    $.ajax({
        type:"POST",
        cache:false,
        async:false,
        url:"Ajax/Ajax_TimeOut.aspx",
        success:function(message){ShowResult();},
        error:function(){}   
        });  
}
function ShowResult(){};

