Page view counter

AJAX - Is it Hype? Is it for you?

Rate It (2)

Last post 03-26-2006 11:19 AM by A1ien51. 34 replies.

Sort Posts:

  • AJAX - Is it Hype? Is it for you?

    06-23-2005, 10:26 AM
    • Loading...
    • A1ien51
    • Joined on 05-06-2005, 2:46 PM
    • MD USA
    • Posts 3,705
    • Points 20,190

    Hello everyone,

    I have started some Articles on AJAX on my weblog. I am currently writing AJAX in Action with another author; Dave Crane. I have been getting a lot of questions from the community about AJAX so I thought I would start to give a great overview on AJAX and how it can be used and what to avoid.

    The first article on the subject starts here and you can find additional articles after it. If you do not know AJAX has been added to the ASP 2.0 framework so you may want to learn about what is behind AJAX so you can understand how to implement it in your future applications.

    AJAX...Is it hype? is the first article with other articles following it in the series.

    If you have any questions about AJAX, feel free to ask them here, on my blog, or over on JavaRanch.com; and I am willing to answer them. I have been working with the technology for awhile now and hope everyone looks into it since it can help you build a rich user interface and improve performance if you implemented AJAX correctly!

    Eric

  • Re: AJAX - Is it Hype? Is it for you?

    10-28-2005, 4:30 PM
    • Loading...
    • BH_JodoKast
    • Joined on 10-28-2005, 2:47 PM
    • Earth
    • Posts 4
    • Points 20

    I have been looking at AJAX and I realized the simpler the better.  If you have time, please evaluate what I consider to be the best implementation of AJAX and .NET.

    URL for more information on SAL is at: http://www.codeproject.com/Ajax/SAL.asp

    What do you think? The Simple AJAX Library looks great, but the Javascript seems to lack multi-threading.  In my opinion that isn't a problem if exceptions are caught and performance is fine-tuned.  Thanks for your time.   

    Programming Guru and Artist! An amazing combination with solid results.
  • Re: AJAX - Is it Hype? Is it for you?

    11-01-2005, 12:59 AM
    • Loading...
    • JeffreyABecker
    • Joined on 10-04-2004, 8:27 AM
    • Philadelphia, PA
    • Posts 2,803
    • Points 13,646
    The javascript would have to lack multi-threading seeing as how javascript does not support it.
  • Re: AJAX - Is it Hype? Is it for you?

    11-07-2005, 3:21 PM
    • Loading...
    • Harold.NET
    • Joined on 07-16-2003, 12:54 PM
    • McLean, VA
    • Posts 457
    • Points 2,221
    the only real thing i am unsure of is the safety of using AJAX, such as ensuring the proper person is logged on
    GO HOKIES!!!
  • Re: AJAX - Is it Hype? Is it for you?

    11-07-2005, 7:49 PM
    • Loading...
    • A1ien51
    • Joined on 05-06-2005, 2:46 PM
    • MD USA
    • Posts 3,705
    • Points 20,190
    There is no difference between how you implement security on a regular application or an Ajax based one.
  • Re: AJAX - Is it Hype? Is it for you?

    11-08-2005, 8:23 PM
    Yes, AJAX is just a client-side technique and security logic must reside on server where you can take advantage of security features of ASP.NET.

    Allan Spartacus Mangune
  • Re: AJAX - Is it Hype? Is it for you?

    11-09-2005, 12:10 AM
    • Loading...
    • er_riteshsharma
    • Joined on 11-08-2005, 7:18 AM
    • bangalore , india
    • Posts 5
    • Points 25

    hi Dear ones

    i am using AJAX , & the data i am getting by using XmlHttpRequest  is in XML. now i want to call some code behind function to process that data . so plz help me by telling how to call the code behind function from javascript!

    er. ritesh sharma

  • Re: AJAX - Is it Hype? Is it for you?

    11-09-2005, 12:15 PM
    • Loading...
    • Harold.NET
    • Joined on 07-16-2003, 12:54 PM
    • McLean, VA
    • Posts 457
    • Points 2,221
     er_riteshsharma wrote:

    hi Dear ones

    i am using AJAX , & the data i am getting by using XmlHttpRequest  is in XML. now i want to call some code behind function to process that data . so plz help me by telling how to call the code behind function from javascript!

    er. ritesh sharma

    try ajax.net
    GO HOKIES!!!
  • Betreft: Re: AJAX - Is it Hype? Is it for you?

    11-24-2005, 7:11 AM
    • Loading...
    • interwanderer1
    • Joined on 04-03-2005, 3:29 PM
    • Belgium
    • Posts 383
    • Points 1,890


    first of all. It is best you post this question in the client side web development part of the forum...

    now...
    What do you mean with "code behind function" ?

    do you mean a server side function?
    you can send data to an asp.net page with AJAX and then based on the data you get... go to a certain function.
    use the following object in javascript.

    var xmlHttp = new ActiveXObject("Microsoft.XMLHTTP")


    do you mean a javascript function that can parse your xml ?
    use the following object in javascript.

    var xmlDoc = new ActiveXObject("Microsoft.XMLDOM")

    do you want the data, not to be in XML format?

    use the setrequestheader method of the XMLHTTP object

    greets,

    Interwanderer

    see my blog at www.Interdevelopments.com and check the future of open mobile widget solutions at www.glowe.org
  • Re: AJAX - Is it Hype? Is it for you?

    12-02-2005, 5:11 PM
    • Loading...
    • er_riteshsharma
    • Joined on 11-08-2005, 7:18 AM
    • bangalore , india
    • Posts 5
    • Points 25
    Thanks dear for help! I really appreciate the Exact solution provided by u!
  • Re: AJAX - Is it Hype? Is it for you?

    12-02-2005, 8:26 PM
    • Loading...
    • Blake05
    • Joined on 12-02-2005, 11:22 PM
    • Wisconsin
    • Posts 501
    • Points 2,498

    Keep up the good work. I bought your book and so far it has been a Really good read. I recommend it to others.

    Blake
  • Re: AJAX - Is it Hype? Is it for you?

    12-06-2005, 11:08 AM
    • Loading...
    • yonah
    • Joined on 12-17-2002, 10:30 AM
    • NY,NY
    • Posts 118
    • Points 590
    I will gladly check out the article, and maybe post some comments on my own blog. Interestingly enough, I didn't know too much about AJAX, until I heard Jesse James Garrett talk about it at the KM World conference a few weeks back. As he described what AJAX was all about, I was stunned that people are finally realizing its usefullness now. I have written AJAX style applications since 1997! - The code has always been there, but back then no one developing public sites wanted to touch it because of the browser wars.
    Check out my blog - Silly Name, Smart Solutions
  • Re: AJAX - Is it Hype? Is it for you?

    12-07-2005, 11:13 AM
    • Loading...
    • slope
    • Joined on 07-09-2003, 6:13 PM
    • Posts 463
    • Points 2,315
    Well spoken.
    When will you post more?

    -Follow your dreams!
  • Re: AJAX - Is it Hype? Is it for you?

    12-07-2005, 11:56 AM
    • Loading...
    • A1ien51
    • Joined on 05-06-2005, 2:46 PM
    • MD USA
    • Posts 3,705
    • Points 20,190

    slope wrote:
    Well spoken.
    When will you post more?

    If this is directed to me, if you go through my blog you will see a bunch of stuff about Ajax there.

    Eric

  • Re: AJAX - Is it Hype? Is it for you?

    12-07-2005, 4:57 PM
    • Loading...
    • Blake05
    • Joined on 12-02-2005, 11:22 PM
    • Wisconsin
    • Posts 501
    • Points 2,498
    Eric, I'll go check out your blog. I like reading everything about ajax I can.
Page 1 of 3 (35 items) 1 2 3 Next >