A Serious problem in AJAX.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nirmalsingh
    New Member
    • Sep 2006
    • 218

    A Serious problem in AJAX.

    hai All,
    i have found a major problem in ajax. datas are not secured while we send through data through url parameters from javascript to behind screen server page
    the url with parameters is visible in [C:\Documents and Settings\Admini strator\Local Settings\Tempor ary Internet Files](windows xp).
    This is not secured. so how can i overcome this problem? what is the solution?
    thanx in advance.
  • dmjpro
    Top Contributor
    • Jan 2007
    • 2476

    #2
    Originally posted by nirmalsingh
    hai All,
    i have found a major problem in ajax. datas are not secured while we send through data through url parameters from javascript to behind screen server page
    the url with parameters is visible in [C:\Documents and Settings\Admini strator\Local Settings\Tempor ary Internet Files](windows xp).
    This is not secured. so how can i overcome this problem? what is the solution?
    thanx in advance.

    Stop local cache.
    It can be done from local web-browser settings or from server side lang.
    Which server side lang u using?
    Have a good day.

    Kind regards,
    Dmjpro.

    Comment

    • acoder
      Recognized Expert MVP
      • Nov 2006
      • 16032

      #3
      Originally posted by nirmalsingh
      hai All,
      i have found a major problem in ajax. datas are not secured while we send through data through url parameters from javascript to behind screen server page
      the url with parameters is visible in [C:\Documents and Settings\Admini strator\Local Settings\Tempor ary Internet Files](windows xp).
      This is not secured. so how can i overcome this problem? what is the solution?
      thanx in advance.
      Use "post" instead of "get". See the tutorial links on how to make a POST Ajax request.

      Comment

      • nirmalsingh
        New Member
        • Sep 2006
        • 218

        #4
        Originally posted by acoder
        Use "post" instead of "get". See the tutorial links on how to make a POST Ajax request.
        i am using c# code behind.

        Comment

        Working...