473,785 Members | 2,484 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

AJAX Capability Detection and Support Strategy Questions

While I have done a substantial amount of ASP.NET programming, I have only
dabbled with AJAX (update panels and a 3rd party JSON setup - jayrock - that
directly updates the DOM). In any case, I'm considering offering Web pages
both to browsers that support AJAX and to those that do not support AJAX.

Questions:
1. In general, should I look to offer two versions of each page - one for
AJAX clients and the other for "non AJAX-supporting" clients? Or is it
reasonable to pursue the creation of a single page that renders differently
based on the browser capabilities? I'm not afraid of writing code to make
the single-page approach happen, but I also would go for two pages if that
would avoid a lot of headaches or unnecessarily complicated pages.

2. What browser capabilities specifically do I look for to know if a
client/browser supports AJAX? I'm sure JavaScript must be enabled, but what
else? Am I simply looking for uplevel vs downlevel browsers? I would not
think so given that many downlevel browsers support JavaScript.

The ASP.NET pages in consideration here will generally not be very
complicated - just displaying data in pretty tables, collecting some data
via text boxes, and providing buttons to submit updates. After the updates,
some of the displayed data would change. There might be an occasional
drop-down list or tree view control that auto posts back. But that's about
it.

I'm using Visual Studio 2008 /.NET 3.5 SP1.

Thanks!
Nov 20 '08 #1
2 1862
it depends on the ajax toolkit. they will require javascript be enabled,
but don't require any special javascript features. the ajax call
requires connecting to the server. this is usually done with the
browsers XMLHttpRequest object or the msxml active/x object in IE. Some
browser's (say mobile) may that have these, so some kits will fall back
to using an iframe which only supports async callbacks. but you almost
always want a seperate mobile site.

the uplevel/downlevel is a measure of css and dhtml support. these say
what javascript can do to the browser. its a better practice to do this
detection on the client side.

-- bruce (sqlwork.com)

Johnson wrote:
While I have done a substantial amount of ASP.NET programming, I have only
dabbled with AJAX (update panels and a 3rd party JSON setup - jayrock - that
directly updates the DOM). In any case, I'm considering offering Web pages
both to browsers that support AJAX and to those that do not support AJAX.

Questions:
1. In general, should I look to offer two versions of each page - one for
AJAX clients and the other for "non AJAX-supporting" clients? Or is it
reasonable to pursue the creation of a single page that renders differently
based on the browser capabilities? I'm not afraid of writing code to make
the single-page approach happen, but I also would go for two pages if that
would avoid a lot of headaches or unnecessarily complicated pages.

2. What browser capabilities specifically do I look for to know if a
client/browser supports AJAX? I'm sure JavaScript must be enabled, but what
else? Am I simply looking for uplevel vs downlevel browsers? I would not
think so given that many downlevel browsers support JavaScript.

The ASP.NET pages in consideration here will generally not be very
complicated - just displaying data in pretty tables, collecting some data
via text boxes, and providing buttons to submit updates. After the updates,
some of the displayed data would change. There might be an occasional
drop-down list or tree view control that auto posts back. But that's about
it.

I'm using Visual Studio 2008 /.NET 3.5 SP1.

Thanks!

Nov 20 '08 #2
Thanks Bruce... regarding: "...but you almost always want a seperate mobile
site."... yes I agree and understand about mobile devices. But in my case
I'm targeting only full-fledged browsers and not mobile devices. So, given
that consideration, is it still a general recommendation to have a separate
copy of the pages or site - one for AJAX enabled browsers and a separate
copy for non AJAX-enabled browsers? Or for non complex pages is it generally
acceptable to have one copy of the page that can work via AJAX or classic
full-page postback?

Thanks,

- J
"bruce barker" <no****@nospam. comwrote in message
news:uB******** ******@TK2MSFTN GP05.phx.gbl...
it depends on the ajax toolkit. they will require javascript be enabled,
but don't require any special javascript features. the ajax call requires
connecting to the server. this is usually done with the browsers
XMLHttpRequest object or the msxml active/x object in IE. Some browser's
(say mobile) may that have these, so some kits will fall back to using an
iframe which only supports async callbacks. but you almost always want a
seperate mobile site.

the uplevel/downlevel is a measure of css and dhtml support. these say
what javascript can do to the browser. its a better practice to do this
detection on the client side.

-- bruce (sqlwork.com)

Johnson wrote:
>While I have done a substantial amount of ASP.NET programming, I have
only dabbled with AJAX (update panels and a 3rd party JSON setup -
jayrock - that directly updates the DOM). In any case, I'm considering
offering Web pages both to browsers that support AJAX and to those that
do not support AJAX.

Questions:
1. In general, should I look to offer two versions of each page - one for
AJAX clients and the other for "non AJAX-supporting" clients? Or is it
reasonable to pursue the creation of a single page that renders
differently based on the browser capabilities? I'm not afraid of writing
code to make the single-page approach happen, but I also would go for two
pages if that would avoid a lot of headaches or unnecessarily complicated
pages.

2. What browser capabilities specifically do I look for to know if a
client/browser supports AJAX? I'm sure JavaScript must be enabled, but
what else? Am I simply looking for uplevel vs downlevel browsers? I would
not think so given that many downlevel browsers support JavaScript.

The ASP.NET pages in consideration here will generally not be very
complicated - just displaying data in pretty tables, collecting some data
via text boxes, and providing buttons to submit updates. After the
updates, some of the displayed data would change. There might be an
occasional drop-down list or tree view control that auto posts back. But
that's about it.

I'm using Visual Studio 2008 /.NET 3.5 SP1.

Thanks!

Nov 20 '08 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

60
7308
by: Fotios | last post by:
Hi guys, I have put together a flexible client-side user agent detector (written in js). I thought that some of you may find it useful. Code is here: http://fotios.cc/software/ua_detect.htm The detector requires javascript 1.0 to work. This translates to netscape 2.0 and IE 3.0 (although maybe IE 2.0 also works with it)
8
4550
by: R. Smits | last post by:
I've have got this script, the only thing I want to be changed is the first part. It has to detect IE version 6 instead of just "Microsoft Internet Explorer". Can somebody help me out? I tried "Microsoft Internet Explorer 6" but that doesn't work. <SCRIPT LANGUAGE="Javascript"> <!-- bName = navigator.appName; if (bName =="Microsoft Internet Explorer") { document.write('<link media="screen" rel="STYLESHEET" type="text/css"
17
1810
by: psimakov | last post by:
I wrote a small piece about AJAX without XML. http://www.softwaresecretweapons.com/jspwiki/Wiki.jsp?page=AJAXWithoutXML Is anybody else doing it? Please share your thoughts...
17
3304
by: Chaprasi | last post by:
Hi I need help with prototype while doing ajax calls. So this is my JS which does a ajax calls var ajax1 = new Ajax.Request ( url, { method: 'get', parameters: params, onComplete: showResults, onFailure: showFailure
31
3167
by: Tony | last post by:
I just noticed that prototype.js is one of the files in the Ajax.NET distribution - I'm pretty concerned about this. Does anyone know if this is the same "prototype.js" that is not well-liked around here? If so, do you know if Ajax.NET can be used without prototype.js? -- "The most convoluted explanation that fits all of the made-up facts is the most likely to be believed by conspiracy theorists. Fitting the
2
4491
by: =?Utf-8?B?UmljaCBBcm1zdHJvbmc=?= | last post by:
I see that the RTM version of ASP.NET AJAX requires installation of the ASP.NET AJAX assemblies in the GAC. I've been through all the docs, and deployment, per se, is never directly addressed. 1. Is installing System.Web.Extensions to the production server's GAC the only (additional) step required to support ASP.NET AJAX? Or is the distributed installer (.msi) doing other stuff that would be required in a production installation? I've...
17
11883
by: Arjen | last post by:
Hi, I want to reload 2 divs at one click. Ive tried: <a href = "javascript:void(0);" onclick="show('ajaxrequest.php?action=removefield','div1');show('ajaxrequest.php?action=reloaddiv2','div2')">verwijderen</a> While both seperate actions work they dont when I put them together. Anyone know how to fix this ? My ajax.js with funcition show
4
11710
by: Peter | last post by:
ASP.NET 2.0 I have an AutoCompleteExtender which works fine- I am using name, id pair in the WebService , but what I am trying to do is: once the user selects an item from the AutoCompleteExtender I want to automatically retreive data from the database and populate the fields on the screen. How do I trigger a server side event after the user selects an item from the AutoCompleteExtender or retrieve data from database on client side...
10
3263
by: Conrad Lender | last post by:
In a recent thread in this group, I said that in some cases object detection and feature tests weren't sufficient in the development of cross-browser applications, and that there were situations where you could improve the application by detecting the browser vendor/version. Some of the posters here disagreed. Since then, I've had to deal with a few of these cases; some of them could be rewritten to use object detection, and some couldn't....
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10325
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10147
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8972
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7499
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6739
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4050
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2879
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.