jacoblwilson
Newcomer
I have this enormous ASCII file to parse and validate, in several different formats, to insert into a database. I worked up a sweet parser to return ordered lists, that part is fine.
I was going to hold the validation rules in an XmlDataDocument I passed into my validation object. This was terribly slow, though, so I read the lines into a hashtable, the keys being an index (1-237) and the objects being arraylists containing validaiotn rules. My page load time is now nothing.
Is there :
A) a better way I coudl have done this
B) a way to speed up X-Path (the validation document only has 137 lines of data in it)
C) Someway to set up us the bomb
I was going to hold the validation rules in an XmlDataDocument I passed into my validation object. This was terribly slow, though, so I read the lines into a hashtable, the keys being an index (1-237) and the objects being arraylists containing validaiotn rules. My page load time is now nothing.
Is there :
A) a better way I coudl have done this
B) a way to speed up X-Path (the validation document only has 137 lines of data in it)
C) Someway to set up us the bomb