vote up 1 vote down star

Title says it all, but I have a server with .Net 2.0 sp1 installed and have no ability to install the AJAX extensions on the server.

Is there anyway I could work around this to incorporate ASP.NET AJAX functionality?

flag

Why all the friggin downvotes for valid suggestions??? – StingyJack Nov 7 '08 at 20:19
Probably from people who use ASP.NET everyday, and know how horrible it is to use with a 3rd party AJAX library. – FlySwat Nov 7 '08 at 20:22
Dude, I am one of them and am perfectly capable of using either with 0 difficulty. MS is now even including jQuery with Visual Studio. weblogs.asp.net/scottgu/archive/… – StingyJack Nov 7 '08 at 20:27
ASP.NET works just fine with roll-your-own AJAX techniques. It's the craptastic WebForms/postback model that falls apart like wet toilet paper. FWIW, i edited the question to make this more ASP.NET-AJAX-specific, since given the accepted answer this is obviously what Collin meant. – Shog9 Nov 7 '08 at 20:34

5 Answers

vote up 7 vote down check

You don't need to install the AJAX extensions into the server's GAC.

You can locally reference System.Web.Extensions.dll from your applications BIN folder....I've done it half a dozen times.

Copy that DLL to your projects local bin. Reference it from your project. Remember to deploy the DLL when you deploy, and you are set.

link|flag
MS also allows you to download the scripts without including the resource dll. All you need to do is include them in the project and set the ScriptPath on the Script Manager. This way you will get the option of using minified scripts and an easier time debugging. – StingyJack Nov 7 '08 at 20:11
Forgot the link asp.net/ajax/downloads 1st download button – StingyJack Nov 7 '08 at 20:12
vote up 2 vote down

If you can't install AJAX extensions, you will have to manage the AJAX calls yourself. It's absolutely possible, since AJAX Extensions just wrap the meat of AJAX. Read up on XMLHttpRequest and you'll find many examples.

Here's a good site with examples. http://www.fiftyfoureleven.com/resources/programming/xmlhttprequest/examples

link|flag
This is incorrect. – FlySwat Nov 7 '08 at 19:57
@Jonathan Holland is half right. The OP can install the extensions. @jons911 is correct in that AJAX is possible without AJAX extensions, you just have to roll your own. – Rob Allen Nov 7 '08 at 20:07
Actually, with WebForms, if you don't have the extensions, your pretty SOL, as the webforms model does not play nice with modifying pages on the fly. – FlySwat Nov 7 '08 at 20:11
vote up 1 vote down

Note that most of AJAX is done on the client side (in the browser) in Javascript.

While there are some server-side libraries to make responding to a AJAX query easier, for the most part they are unnecessary. Any server technology that can server a web page to a browser can handle an AJAX request just as well.

link|flag
ASP.NET Webforms really does need the extensions, otherwise a lot of the state management gunk that Webforms does breaks when you try to just change content using native XMLHTTPRequests. – FlySwat Nov 7 '08 at 20:12
Um.... no it doesn't. If you are using the ASP.NET AJAX toolkit suite, then you need the System.Web.Extensions library in either DLL or code form. You can do Ajax to update all kinds of stuff on a webform without issue. – StingyJack Nov 7 '08 at 20:14
Until you do a regular postback and suddenly the Viewstate has changed and the webForms engine throws an exception. Anything beyond just copy changes (ie, if you need to add a new control) breaks it. – FlySwat Nov 7 '08 at 20:17
Duh, you cant add a control on the client side only and expect the server engine to know about it. If you are going to go to the trouble of drawing the controls on the client, then you should be handling their data persistence that way also. – StingyJack Nov 7 '08 at 20:19
Right, which is why MS introduced ASP.NET AJAX to workaround this difficulties with AJAX + ASP.NET. Its good to see that we've come full circle back to my original point. – FlySwat Nov 7 '08 at 20:20
show 3 more comments
vote up 3 vote down

Theres always prototype and jQuery for AJAX calls.

Both of which are perfectly valid for making Ajax calls to the server, despite Jonathan Hollands persistence (and his down-voting of everyone else's response) to the contrary.

MS now packages jQuery with Visual Studio, so there is no interoperability problem.

Please remember that the server has no knowledge of controls created on the client side, and you will have to take the extra steps to persist any data (via ajax calls) to the server.

link|flag
jQuery was shipped for ASP.NET MVC. Webforms sucks at 3rd party handling of Ajax...End of Story. – FlySwat Nov 7 '08 at 21:13
"I'm excited today to announce that Microsoft will be shipping jQuery with Visual Studio going forward. " - from ScottGu's blog. Yes, this is the end of the story. – StingyJack Nov 10 '08 at 20:54
vote up 1 vote down

Microsoft ASP.NET AJAX is not the only way to implement AJAX Functionality. jQuery and Prototype are two popular javascript libraries for working with AJAX, regardless of server platform.

If you're tied 100% to Microsoft ASP.NET AJAX, then you may need to download it and install the DLL manually to your local project.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.