前台:
 function FN_Serch()
     {
     var key = document.getElementById("serchinput").value;
     if(key=="")
     {
     alert('您还没有输入条件!');
     return;
     }else
     {
     window.location='DownLoad.aspx?key='+key+'';
     }
     }后台:
        #region 条件查询资源信息列表
        public void FN_SerchByFilePath()
        {
            Model.File mf = new Model.File();
            BLL.NRBLL bn = new BLL.NRBLL();
            string key = Request.QueryString["key"].ToString();
            string key1 = key.Substring(key.LastIndexOf('\\'));
            mf.Filepath = key;
            if (bn.FN_SerchByFilePath(mf) != null)
            {
                this.RepeaterShow.DataSource = bn.FN_SerchByFilePath(mf).Tables["t_file"].DefaultView;
                this.RepeaterShow.DataBind();
            }
        }点击前台的客户端按钮 怎么触发后台的这个函数