How do I submit really big amounts of data to a form?
- by William Calleja
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?