Do a postback with server-side script?

starwiz

Member
Joined
Jul 2, 2003
Messages
21
I have a textbox, and inside, Im pasting up to about 10,000 lines of a CSV file. That text is processed and eventually put into a SQL database.

For the kind of processing Im doing, however, 10,000 lines of text is far too much to process. I can get about 1,000, but after that, I get strange results.

Id like to write my code so that it processes 1,000 lines of the text, and then postbacks to the same page, and processes another 1,000 lines, and so on, until its done processing everything. I think that this is the best way to get it working.

I, however, have no idea how to do a postback from my VB.net code. Does anyone know how I can call one?

I really appreciate any help you can give me.
Thanks,
-Starwiz
 
Would it not be better if you save the 10,000 lines of text in to local text file, then upload that file to the server, parse it and update its content to the database?
 
Back
Top