How to force DetailsViewHyperLink include culture in url?
How can I make DetailsViewHyperLink to include culture (en/Home/<news item title>/<news item date>/..)?
Hello Saad,
Unfortunately this is not possible directly. You can inherit the DetailsViewHyperLink class and override its OnDataBinding() method. Inside it there is a call to DataResolver.Resolve() method that actually builds the URL, you could try and override it so it generates some other URL. Basically you can append "/en" or "/es" or whatever language you need in front of this URL after it is generated.
Greetings,