Re: After certain lengt of text in editor, form cannot be submited.

  •  03-28-2004, 7:28 AM

    Re: After certain lengt of text in editor, form cannot be submited.

    :) .....ladies and gentlemen...after some stupid playing around with my code......

    The problem lies with in "GET" or "POST".

     

    If I use  " <form name="Edit" method="GET" action="target.asp" onsubmit="return checkform()">"

     

    The form can only be submitted with certain length of text because the "GET" cache is limited ( until how much I dunno).

    I was doing "GET" for some asp coding purpose to get "query string"....but for now...I just have to find another alternative..

     

    So, it'll be safer to use " <form name="Edit" method=" POST " action="target.asp" onsubmit="return checkform()">"

     

    Sorry, and thank you all for yer help! . :)

View Complete Thread