Results 1 to 2 of 2

Thread: AJAX, ASP & Web Site design

  1. #1
    Join Date
    Oct 2002
    Posts
    933

    AJAX, ASP & Web Site design

    In the next release, you'll find a lot of features with AJAX option. The most difficult one to implement is the MyInputForm. Beside the fact that an image verification option is implemented, the auto generated form is done with AJAX with an external verification program. AJAX works with a main file with an event button when clicked will send data like querystring and work with an external program in which the result is placed in the AJAX container <div id='MYAJAX'></div> of the main program. Kind of messy but Tornado has automated made all of that and make it painless. The implementation of this module was derailed by the fact that AJAX submit does not work with non-conforming HTML code. That mean all the <Table><TD> formatting does not work. Finally got it to go with making input forms w/o the non-conforming code.

    BTW, please note that the dynamic data generated by AJAX & ASP does not work well with the search engine as the data is dynamic. Most search engine does not like to be trapped. If you are designing a web site that would like to be searched. SO not use these technique.

    Frank
    Last edited by Frank; 03-25-2009 at 03:31 PM.

  2. #2
    Join Date
    Oct 2002
    Posts
    933

    Clarification - ASPdb.Net and ASP.Net

    Clarification...

    When you use the ASP.Net controls (form/session/postback based). Your chance of having you page searched by the search engine is not good. If you use ASPdb.com standard aspx like -

    http://www.mysite.com/program.aspx (no querystring)

    <html><head>
    <!--#include virtual="showitems.aspx"-->
    </head><body>
    <%= here %>
    </body></html>

    Now, you are OK !!

    As for AJAX, there is no hope with search engines. It is a cloaking feature and great for security. So only use it for FORM submission to be safe.

    Fk

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •