1

我是asp的新手。我在名为 results.asp 的文件中有一个名为“搜索”的提交按钮。当单击按钮时,我只需要在与搜索按钮相同的文件中运行一个名为“searchRecords”的 asp 函数。无需重定向到另一个页面。我尝试做所有事情,使用 js、vb 脚本......没有什么能按我想要的方式工作。

提交按钮:

<form action="what goes here?">
<input type="submit" value="Search Records" name="search">
</from>

功能:

<% function show()
...stuff here....
%>

我还从另一个文件中找到了这个在相同情况下工作的 asp 代码,但它在我的文件中不起作用。

<% if (request("button name")= "button value") then
   function to call
   end if
%>

请帮我解决这个问题...在此先感谢...

4

2 回答 2

1
$.ajax({

                type: "POST",
                url: URL + "index.php/phpService/SaveClient/" + controllerVM_.TokenKey(),
                data: JSON.stringify(ko.toJS(params)),
                contentType: "application/json",
                async: true,
                dataType: 'json',
                cache: false,

                success: function (response) {

                    if (response.GetClientsResponse.Result != "Invelid Tokenkey !!!") {
                    }
                    else {
                        window.location.assign("Login.html");
                    }
                },
                error: function (ErrorResponse) {

                    if (ErrorResponse.statusText == "OK") {
                    }
                    else {
                        alert("ErrorMsg:" + ErrorResponse.statusText);
                    }
                }

            });
于 2013-05-24T04:59:28.103 回答
1

对于您的情况,我认为您需要使用 Jquery ajax:

jQuery.ajax({
  type:"POST" // Or GET
  data:"id=12&name=abc", 
  dataType:"xml", // Default type - text
  url:"/search/searchRecords", // URL of service
  success: function (data){ 

  }
});

如果你使用 ASP.NET MVC,你可以直接调用一个 asp 函数。但是使用 asp-classic,您只能通过服务调用 asp 函数。

于 2013-05-24T04:48:49.430 回答