Dim sTemp as string = "<a href=ConsoleApplication1.exe?PFolder=oPFolder&SFol der=sfolder&oMsg=i>"
sTemp = sTemp.Remove(0, sTemp.IndexOf("?"))
'Your string now looks like this: PFolder=oPFolder&SFolder=sfolder&oMsg=i
Dim sArray() as String = sTemp.Split("&")
'Your array now looks like this:
0 PFolder=oPFolder
1 SFolder=sfolder
2 oMsg=i
Now its just simple string manipulation to remove everything before the =
================================================== =========
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
================================================== =========
http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile
================================================== =========