Hi Folks
My Question: (Vb script)
If I have for example 5 parameters
I want to use sometimes with 3 parameters and
Sometimes with 2 Parameters
Any Help
Thanks
Efrat
Printable View
Hi Folks
My Question: (Vb script)
If I have for example 5 parameters
I want to use sometimes with 3 parameters and
Sometimes with 2 Parameters
Any Help
Thanks
Efrat
What do you mean?If so, then do the following:Code:Request.QueryString("param1")
Request.QueryString("param2")
Request.QueryString("param3")
'Etc ............
This should be repeated for each of the parameters likely to be passed.Code:If (Len(Request.QueryString("param1")) > 0) Then
'== Code for parameter passed
Else
'== Code for parameter missing
End If
Any help? :cool: