I have a configuration file that i would like to update with classic asp.
Lets say the conf file looks like this:
[Parameters]
param1 = 'foo'
param2 = 'boo'
param3 = 'moo'
param4 = 'choo'
What I would like to do is write a script to change param2
and param4
to have different.
As I am not all that great with asp, I was wondering what would be the best way to do this? ie is there a way I can increment the line and look for param2
and param4
and then somehow replace the entire line?
Any help will be much appreciated.