2
votes
Including a WebService reference in a control
You can add a ScriptManagerProxy in the code or the markup of your control and add the service reference through it. The settings in the ScriptManagerProxy are merged with the "real" ScriptManager …
1
vote
How to save history within UpdatePanel ?
The ability to manage history was added in .NET 3.5 SP 1. Here are some resources that will help get you up to speed.
…
1
vote
Authorization, authentication when doing AJAX (jquery) calls to .net web services (asmx, wcf, etc), what do I need to know?
It works basically the same way as with regular ASP.NET and ASMX/WCF. The big difference is that you'll need to use the Membership API from the client-side (whioh is fully supported by ASP.NET AJAX …
0
votes
How do I Invoke Ajax OnClick from Provider Web Part to Consumer Web Part
Since Web Parts should be a loosely coupled as possible, I'd use the Web Part connections infrastructure and the Subscriber pattern to handle this.
Communication between connected parts is …
1
vote
.NET Winform AJAX Login Services
You need to enable access to the authentication service in your web.config
<system.webServices>
<authenticationService enabled="true" requireSSL="true|false"/>
</s …
0
votes
How do I get access to the ASP.NET Client-Side API at all times?
I'm not sure I follow your question but hopefully this will help. The standard method to ensure you have access the the ASP.NET AJAX client-side libraries is to add a ScriptManager control to your …
0
votes
Can ASP.NET AJAX partial rendering work inside a SharePoint 2007 application page?
From a technology standpoint, Service Pack 1 does not add full support for ASP.NET AJAX. You still need use the workarounds described in the various articles mentioned in the previ …
1
vote
Jquery encompas AJAX? Thoughts?
Based on what I've heard to this point, nothing in the ASP.NET AJAX libraries will be replaced by jQuery. Microsoft will just be adding the jQuery libraries to the distribution. Basically, you'll h …
0
votes
AJAX ScriptManager in UserControl
I think the Init event should work. Use the technique you described (i.e. checking that ScriptManager.GetCurrent returns null before adding) but when you add the ScriptManager, make sure you add it …
0
votes
An issue with AJAX web service call: Microsoft JScript runtime error: Sys.Net.WebServiceFailedException:
Is the Web service is a different project? If so, .NET will consider it to be a cross-domain call (I think because the client and service are running in separate instances of the developer web serv …
0
votes
How to get XML from Ajax jQuery Instead of json
Try adding the following attribute to your service operation:
[ScriptMethod(ResponseFormat=ResponseFormat.Xml)]
…
0
votes
Where to put javascript code with “Server-side ASP.Net AJAX” ?
You use the PageRequestManager object on the client-side to listen for events generated during an asynchronous postback.
For more information check out this overview on MSDN:
…
