problem with the " text area " don't able to accept more that " 1900 charcter "" ??
peace be with you
i made a page use in it :
4 text and 1 text area
and i want to insert the data taken from text area in to memo in db
but if the data in the text area more that " 1900 charcter "" it's doesn't responsed
how to solve this problem to make it accept more that "" 20000 "
thanks
Re: problem with the " text area " don't able to accept more that " 1900 charcter "" ??
Is there a size limit in the database field? What database are you using? Are you using any restrictions (javascript, etc) on the page?
Re: problem with the " text area " don't able to accept more that " 1900 charcter "" ??
peace be with you
dear : mendhak
1- the size in field is --- > memo ......
2- access xp
3- no restriction
4- i use the muthod :: get
5- i test to put in the field by " paste " data in it for amount of " 2000 chracter " and it accept
*** the chracter mean "" number of chracters write in the text area "" (( abcde .... etc))
thanks
Re: problem with the " text area " don't able to accept more that " 1900 charcter "" ??
have you tried using the post method as opposed to the get method?
Re: problem with the " text area " don't able to accept more that " 1900 charcter "" ??
peace be with you
post is the solve
thanks
Re: problem with the " text area " don't able to accept more that " 1900 charcter ""
I don't understand what you said, but I'm glad it's resolved.
Re: problem with the " text area " don't able to accept more that " 1900 charcter ""
Quote:
Originally Posted by mendhak
I don't understand what you said, but I'm glad it's resolved.
i was simplyimplying that instead of using:
<form name="myform" action="blah.asp" method="get">
use:
<form name="myform" action="blah.asp" method="post">
there are times when the "get" method can not hold all the information you are trying to handle because of a limitation to the query string.