How do I submit really big amounts of data to a form?
Posted
by William Calleja
on Stack Overflow
See other posts from Stack Overflow
or by William Calleja
Published on 2010-04-30T17:57:24Z
Indexed on
2010/04/30
18:17 UTC
Read the original article
Hit count: 215
I have an HTML from that's posting a really big amount of data which is eventually being saved into an SQL Server 2005, the form is as follows:
<form name="frmForm" method="post" action="saveData.aspx">
the target page takes the content of a control within the form and saves it to the database through a normal SQL insert statement. However only a portion of the data is being saved. The field in the database is an ntext. Should I use a different field? Or is something happening while I'm transferring from one page to another? Or even still there's something happening when I'm sending the really big SQL statement through c# in saveData.aspx?
© Stack Overflow or respective owner