Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Form to Insert a large amount of data in 1 go..

Explorer ,
Jan 25, 2007 Jan 25, 2007

Copy link to clipboard

Copied

Hello all,

I have a form that inserts a record and its working well enough.
The problem I have is that the form takes a lot of data from the user and depending on the speed its filled in some users are getting times out I think?

They dont get an error they tellme they get a page cannot be displayed at the end when they submit?

This puzzles me because Id have thought they would have been thrown to the log in and the log in would send them to the previous URL ??

Anyway all I can deduct is that they are taking too long to fill it out and i ned to do something eithr split the form into a couple of forms which would be a real pain??

Id be greatfull to hear how you guys accomplish large input forms.

Thanks
Tag
TOPICS
Server side applications

Views

241
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jan 25, 2007 Jan 25, 2007

Copy link to clipboard

Copied

It is unlikely that the issue is related to the size of the form (unless it
is huge). If this is containing information that includes session variables
then it is likely that these have timed out. It could also be related to
invalid data entry such as non numeric characters.

Unless the person has changed their internet setting from the standard "Show
friendly URL errors" they are unlikely to get a very meaningful error
message.

--
Paul Whitham
Certified Dreamweaver MX2004 Professional
Adobe Community Expert - Dreamweaver

Valleybiz Internet Design
www.valleybiz.net

"Tag2007" <webforumsuser@macromedia.com> wrote in message
news:epaol1$lc6$1@forums.macromedia.com...
> Hello all,
>
> I have a form that inserts a record and its working well enough.
> The problem I have is that the form takes a lot of data from the user and
> depending on the speed its filled in some users are getting times out I
> think?
>
> They dont get an error they tellme they get a page cannot be displayed at
> the
> end when they submit?
>
> This puzzles me because Id have thought they would have been thrown to the
> log
> in and the log in would send them to the previous URL ??
>
> Anyway all I can deduct is that they are taking too long to fill it out
> and i
> ned to do something eithr split the form into a couple of forms which
> would be
> a real pain??
>
> Id be greatfull to hear how you guys accomplish large input forms.
>
> Thanks
> Tag
>


Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jan 25, 2007 Jan 25, 2007

Copy link to clipboard

Copied

Not knowing what language you are using?
With asp vbscript you could increase the session time out to something like
this,
<%
Session.Timeout = 240
%>
This should give you plenty of time for the session to time out and see if
that is what it is.
a normal session is around 20 min.
Dave
"Tag2007" <webforumsuser@macromedia.com> wrote in message
news:epaol1$lc6$1@forums.macromedia.com...
> Hello all,
>
> I have a form that inserts a record and its working well enough.
> The problem I have is that the form takes a lot of data from the user and
> depending on the speed its filled in some users are getting times out I
think?
>
> They dont get an error they tellme they get a page cannot be displayed at
the
> end when they submit?
>
> This puzzles me because Id have thought they would have been thrown to
the log
> in and the log in would send them to the previous URL ??
>
> Anyway all I can deduct is that they are taking too long to fill it out
and i
> ned to do something eithr split the form into a couple of forms which
would be
> a real pain??
>
> Id be greatfull to hear how you guys accomplish large input forms.
>
> Thanks
> Tag
>


Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 25, 2007 Jan 25, 2007

Copy link to clipboard

Copied

LATEST
Thanks Baxter I will have a look into that..
Thanks
Tag

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines