I'm trying to assign a value to a HTTPCookie that I just created. But the .NET interpreter gives me a "declaration expected" error, here's the code:
Dim MyCookie As New HttpCookie("UserName")
MyCookie.Value = "GiLtY"
I didn't Import any namespace, don't know if any namespace is required.
Any help is appreciated, thanks.
BTW, I'm using the .NET SDK, not the Enterprise version, if that helps.
--GiLtY
Dim MyCookie As New HttpCookie("UserName")
MyCookie.Value = "GiLtY"
I didn't Import any namespace, don't know if any namespace is required.
Any help is appreciated, thanks.
BTW, I'm using the .NET SDK, not the Enterprise version, if that helps.
--GiLtY