Just to give you guys an update regarding the resolution I found for this problem (as I know how such resolutions help me when I need them), this is the code (below) that I used to get my redirects working via VB...
Kudos to Samir for stearing me in the right direction too btw...
Dim rURL As String = String.Empty
rURL = "http://www.google.com"
HttpContext.Current.Response.Redirect(rURL.ToString(), False)
I still used Samir's steps (above) which are:
1. First of all, you have to add a reference to the System.Web namespace in your project.
2. Add an Imports statement in your code "Imports System.Web;"
I just substitued my code in for step # 3. Oh, and I also had to change my form's security settings to "Full" via the following steps:
1. "Tools (menu) >> Form Options >> Secuirty & Trust" tab
2. Unchecking "Automatically determine security level (recommended)" checkbox, and selecting the "Full Trust (the form has access content from the domain in which it is located)" radio button...
After doing-so, my form redirect to whatever URL I specified upon submit via VB code!! Note that the button I appended this code to was my "submit" button of course, and I appended this code as the last block of the button's code (of course) so the redirection is the last thing that happens.
I hope this helps anybody out there who's trying to do this via VB Script!
- Tavalanche