admin
-
11/2/2006 10:19:32 PM
Re: MultiLingual Redirects to LanguageVersion HomePage?
Hi Michael,
the problem is caused by the fact that you're redirecting the user to an invalid URL. If you use Response.Redirect, you cannot use this kind of path. Instead, you need to write something like this:
Me.Response.Redirect(Request.RawUrl & "?lang=" & Me.ddRegionSelector.SelectedValue)
Regards,
|