Question: I’m trying to use a Response.Redirect in SalesLogix but I when I compile
my code Response is not recognized as valid. I added Imports
System.Web.UI with no luck. Here is my code:
Response.Redirect(“http://
Also, I’m using it on a button click event, Visual Basic code. Ideas?
Answer: The concatenation is wrong, use this:
Response.Redirect(“http://
You need to replace the plus signs with ampersands and you’re good to go.



