AJAX :: Use A AutoCompleteExtender On A MasterPage With PageMethod?

Jun 28, 2010

I put my ScriptManger on the top level Masterpage with EnablePageMethods set to "true".2. I put a AutoCompleteExtender (AjaxToolkit) on a second level Masterpage which derives from the top level MasterPage. The AutoCompleteExtender is used for search with a TextBox. The PageMethod is defined in the Code Behind of this second level Masterpage.3. I have several Contentpages that derive from the second level Masterpage.Problem: The AutoCompleteExtender does not work and that's probably because the PageMethod is defined in the second level MasterPage in the CodeBehind and not in the Contentpage. Ok, so I'm pretty sure what causes the error,- I do not want to use a WebService, because I don't want the search to become public. And as far as I know you can't define a WebService that is only visible to the Website itself - it's always public.- It would be stupid to put the search on every Contentpage just for the PageMethods sake.

View 1 Replies


Similar Messages:

AJAX :: Using AutoCompleteExtender In MasterPage?

Apr 12, 2013

My master page code:

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="test.master.cs" Inherits="test" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
 
[code].....

Cs code:

 [System.Web.Services.WebMethodAttribute(), System.Web.Script.Services.ScriptMethodAttribute()]
public static string[] SearchCustomers(string prefixText, int count, string contextKey)
{
//return default(string[]);
string[] movies = { "Star Wars", "Star Trek", "Superman", "Memento", "Shrek", "Shrek II" };
return (from m in movies where m.StartsWith(prefixText, StringComparison.CurrentCultureIgnoreCase) select m).Take(count).ToArray();


Where am i going wrong?

View 1 Replies

Calling Vb Pagemethod From Ajax?

Feb 18, 2011

I have a simple aspx file with 2 text boxes and an ajax autocomplete extender attached to textbox2

[code]....

This not working.. How can i make it work?

View 1 Replies

AJAX :: PageMethod Does Not Respond?

Mar 18, 2010

I have a long running process that i kick off with a pagemethod that normally takes about an hour to complete, when it is finished it returns the result of the method.I then poll with another pagemethod to update the status of the first process.the process is taking 4.5 hours this week which is acceptable and understandable, but the feedback sometimes gives up after a couple of hours and sometimes the main method never returns any feedback to the client.

Regardless of the lack of status updates and final feedback the server still completes the long task.As far as i'm aware we have made no changes to any timeout values.is there a timeout setting that we are hitting that is above 1 hour for ajax methods?

View 2 Replies

How To Get Ajax.Net PageMethod To Return JSON

Jan 12, 2010

I am using an AJAX.Net to call an ASP.Net PageMethod, which returns JSON serialized JSON data

{"d":"[{"Fromaddress":"testfrom1@test.com","Toaddress":"testto1@test.com"},{"Fromaddress":"testfrom2@test.com","Toaddress":"testto2@test.com"}]"}

The Response Header states the content type as

"Content-Type application/json; charset=utf-8"

However, the data is just available as a string, and does not seem to be available as JSON data from javascript. What do I need to do to work with the returned data as JSON from javascript?

View 1 Replies

AJAX :: UseHttpGet Causes PageMethod To Fail?

May 30, 2010

I have a PageMethod that works perfectly well when it either (a) running in the VS dev server, or (b) deployed but marked with UseHttpGet=false.

What doesn't work, and is driving me mad, is having UseHttpGet=true and then deploying it to a test server (Vista & IIS7). It fails to call through the proxy with error code 404 coming back. But it works find if I set UseHttpGet=false.

I have gone through all of the basic stuff I can think to check, and as noted it works perfectly well on the dev box. So there must be something particular about full-blown IIS7 and its config that I am missing..

anything to check in the IIS manager that would cause this to fail? I've tried with forms authentication enabled and disabled, as a few posts mentioned issues with that.

View 1 Replies

AJAX :: Pagemethod Authentication Failed?

Mar 3, 2011

I have a page that requires user login via Forms Authentication. Is it possible to use Page Methods in this page? My current attempt is resulting in the following error:Message: Sys.Net.WebServiceFailedException: The server method 'GetPlanContent' failed with the following error: System.InvalidOperationException-- Authentication failed.

View 2 Replies

AJAX :: PageMethod Not Working With IIS6

Jun 16, 2015

My website is running fine on my local system but when i upload it on IIS6 of my local computer [Ajax.AjaxMethod] is not working. How i will solve it.

View 1 Replies

AJAX :: Unhandled Exception During PageMethod After Moving To .NET 4.0?

Jun 29, 2010

I have written an application that relies upon PageMethods. It was working fine in .NET 3.5 where I would rely upon exceptions to signify something failing during the call. I would then alert the user to what ever it was that happened. All was working great. I transitioned to .NET 4.0 as I am intrigued by the Parallel Computing improvements. Now any exception that I throw in the PageMethod in the code behind is met with an Unhandled Exception. Nothing has changed other than the target framework.

View 5 Replies

AJAX :: AutoComplete Extender Using Pagemethod Resulting In 401.1

May 6, 2010

We have used the ajax toolkit auto complete extender in an intranet app which uses Windows authentication. The auto complete uses a static page method in the page code behind to get the results. Even though the page containing the auto complete is authenticated by the server and the asp.net session id set in the cookie, the initial requests from the auto complete result in 401.1 and after few attempts result in a 200. This irritates the users of the app. Also later on there are 401.1 happening intermittently among the various 200 there by affecting the responses.

I have verified these responses by using Microsoft Network Monitor,Fiddler and Firebug. Also these entries are present in IIS logs. I tried to implement the same with a script service but that too gives same issues. Our site has lots of ajax features and controls and everything is working fine, only this issue is there.

<asp:ScriptManager ID="smHome" runat="server" EnablePageMethods="true" AsyncPostBackTimeout="600"> </asp:ScriptManager>
<CustomControls:StyledAutoCompleteExtender runat="server" ID="acAssociateSmartSearch"
TargetControlID="txtSmartSrch" ServiceMethod="GetAssociateSmartSearchList" MinimumPrefixLength="2"
CompletionListCssClass="sscompletionListElement" CompletionListItemCssClass="sslistItem"
CompletionListHighlightedItemCssClass="sshighlightedListItem" CompletionSetCount="10"
CompletionInterval="500" EnableCaching="true">

View 1 Replies

AJAX :: PageMethod And Server Method Failed Error?

Jun 14, 2010

I have a long running PageMethod defined in the cs that is being called from javascript and after 4 minutes I am getting the below error and 504 status code for my aspx page and onFail callback is raised.

<HTML><HEAD>
<TITLE>Gateway Timeout - In read </TITLE>
</HEAD><BODY> [code].....

View 2 Replies

C# - Send An Object (byteArray) To An AJAX PageMethod Via Javascript?

Jul 1, 2010

need to send a byte array from javascript into a c# page method. The int and string variables work fine, but when I step through the c# code, the "object" which was the byte array is null, even though I checked to see if it had a value in JS.

var byteArrayObj = GetBinaryDataFromFile(filePath);
var tranAttachmentName = filePath.replace(/^.*\/, '');
PageMethods.AddFileToTran(tranId, tranAttachmentName, byteArrayObj, RefreshPage, onTimeout, onError);

[code]...

View 1 Replies

AJAX :: PageMethod Without Success And Failure Event Handlers

Jan 24, 2016

Is it mandatory to pass the Success and Failure method names as parameters while calling server side methods using PageMethods in client script.

I referred to article [URL] ....

View 1 Replies

AJAX/Javascript PageMethod.FunctionName, Trying To Made Code Reusable

Jan 11, 2010

I have implemented AJAX for calling server side function using client side function call i.e Calling server side function using javascript tag by using PageMethod in javascript.

I have few question regarding the same implementation.

[code]....

This FunctionName will be the name of server side function that a developer want to call.

View 1 Replies

AJAX :: Can Use AutocompleteExtender In C#

Sep 2, 2010

In the tutorial for autocomplete text box for static page method in c# the following lines of code is given. When i use it my website using c# it gives error 'invalid term "in" showing in line 7.

[System.Web.Services.WebMethodAttribute(), System.Web.Script.Services.ScriptMethodAttribute()]
public static string[] GetCompletionList(string prefixText, int count, string contextKey) {
// Create array of movies string[] movies = {"Star Wars", "Star Trek", "Superman", "Memento", "Shrek", "Shrek II"};
// Return matching movies return (from m in movies where m.StartsWith(prefixText,StringComparison.CurrentCultureIgnoreCase) select m).Take(count).ToArray();
}

View 2 Replies

AJAX :: Use Hidden Value With Autocompleteextender?

Aug 20, 2010

I am using autocompleteextender to receive list of projects. Is there any way that, given list of projects can hold a hidden values like a dropdownlist? I need project ID as hidden value...so that when I select a project from the list, I can retrieve the ID using C#/ASP.Net.

View 2 Replies

AJAX :: AutoCompleteExtender Is Not Working?

Nov 16, 2010

i have used fallowing code

<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<cc1:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" TargetControlID="TextBox1"
MinimumPrefixLength="1" ServiceMethod="GetNameInfo" ServicePath="WebService.asmx">
</cc1:AutoCompleteExtender>........

View 1 Replies

AJAX :: Can't Implement An Autocompleteextender

Mar 11, 2010

i'm using visual web developer 2008 express edition, i added the ajax toolkit to the tools without issue. SOME tools, like the accordian (and others) allow me to drag and drop them onto my forms. but others, such as the autocompleteextender wil not allow me to drag and drop them onto a form. i just get a circle with a line through it (as if to say - this is not allowed) - why is that?

i tried coding the extender in manually like many examples i've seen online:

<cc1:AutoCompleteExtender TargetControlID="txtName" ServiceMethod="GetCustomers" ServicePath="AjaxService.asmx"
MinimumPrefixLength="1" ID="AutoCompleteExtender1" runat="server">
</cc1:AutoCompleteExtender>

but it underlines "cc1" and gives me the error: "unrecognized tag prefix"

what am i doing wrong?

View 2 Replies

AJAX :: AutoCompleteExtender + Backspace In IE8

Oct 19, 2010

I've got an AutoCompleteExtender on one of my pages, it seems to be working fine aside from this strange behaviour: Let's say I key in 2 characters, the suggestion list would display. When I press on backspace to delete those 2 characters, wait until the suggestion list to disappear, and re-enter those 2 characters, the suggestion list would no longer display (or sometimes would flicker for about a second after losing focus from the textbox) and I'll need to refresh the page just to get it working again.

However, if I do press backspace and delete those 2 characters but not let the suggestion list to disappear and re-enter new characters, it would continue displaying with correct suggestions. This behaviour seems to happen only in IE8, (although it works with IE8 using Compatibility View and Firefox)... My code is almost the same as the sample on this site except for the animations, and the service looks up in a database table.

[Code]....

View 5 Replies

AJAX :: AutoCompleteExtender On Textbox?

Nov 13, 2010

I have implemented autocompleteextender on textbox, everything works fine, however please help me with this minor thing.In textbox whenever I enter a value it get stored in memory

e.g I have typed 'hello' & press enter. The next time I press 'h', 'hello' appears below it, & hides the autocompleteextender. Is there a way to switch this function of text box

View 2 Replies

AJAX :: AutoCompleteExtender Refresh?

May 21, 2010

I am having a problem with the AutoCompleteExtender contol that I've put up on my webpage. I have this employee page where the seach is done at the very top and I'm using this control ; The formatted name is my search key that I'm doing in my web method. Now when I am deleting an employee and reloading the page...the Formatted name still appears during the page load. I've to close the window and load it again to get the updated employee list.

<asp:TextBox
ID="txtFName"
runat="server"

[code]...

View 5 Replies

AJAX :: AutocompleteExtender Not Working From IIS?

May 24, 2010

I am using AjaxAutoCompleteExtender in my asp.net program (C#) . I am applying the extender to a texbox and using internal Web Service. I am getting the desired result, when i am running from the development environment. After Publishing the site to IIS, I am not getting the list and not showing any errors. I have turned off custom errors. My website is not an Ajax Enabled WebSite. So i added the lines into my Web.Config.I tried all service path.. http://localhost/Test/ WebService.asmxhttp://192.109.1.8/Test/WebService.asmxand i tried ~/Test/WebService.aspxWhile testing from the development environment, i am using the last one.I am not sure whether this is the problem with the service path or any permission issue.

View 3 Replies

AJAX :: AutoCompleteExtender Control?

Jun 9, 2010

I have an AutoCompleteExtender control as below. I have tested the web service and it is working. When I debug, there is no error message of any kind. But when I type in the TextBox1, the auto completion does not work. Does somebody know what could be the cause?

<
ajax:AutoCompleteExtender
ID="TextBox1_AutoCompleteExtender"
runat="server"
CompletionSetCount="40"
MinimumPrefixLength="1"
ServicePath="http://ourIntranet/webServiceConsistentName.asmx"
TargetControlID="TextBox1"
ServiceMethod="http://ourIntranet/webServiceConsistentName.asmx?op=GetConsistentNameList">
</ajax:AutoCompleteExtender>

View 5 Replies

AJAX :: AutoCompleteExtender Key Value In Text Box?

Apr 7, 2010

I am using ASP.NET 3.5...I have a text box where I am using the AutoCompleteExtender for search.

When user enter the key the serach shows the "ProjectNumber-ProjectName" in the search result....after selecting any of this...only ProjectNumber is entered in the textbox (I am using hidden control to store key values)...everything works fine till here.Now I have a problem with values stored in the hidden control...for example in the text box there are three ProjectNumbers ..A,B,C....now I go ahead and delete all these three and enter the key word again...the search work fine but when I select any value the Text box is populated with old value (coming from hidden control) like A,B,C and then new value D

Please suggest me how I can assign the hidden text box value with the new text box values after the selection is done...

function KeySelected(source, eventArgs) {

var labelVal = document.getElementById('<%=this.Hidden1.ClientID%>').value;
var userValues = "";
[code]...

View 10 Replies

AJAX :: ContextKey In AutoCompleteExtender?

Aug 24, 2010

How can I use the contextKey of an AutoCompleteExtender ? When I had a search, I got to know that using javascript we can fire the contextkey to the webservice writing this script and how to use it in webservice ????

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved