What I am trying to do is call a web page after a JSON service for an autocomplete textbox. ther service works and the data returns but I cannot get the page to pull up. What I am doing is returning a 3rd value and depending on what that 3rd value returns
I am opening a window based on that value but it doe snot seem to work.
<script>
$(document).ready(function () {
BindControls();
});
function BindControls() {
$("#<%= txtSearch.ClientID%>").autocomplete({
source: function (request, response) {
$.ajax({
url: "../Recruiting.asmx/FindRecID",
data: "{ 'sLookUP': '" + request.term + "' }",
dataType: "json",
type: ...
Go to the complete details ...