I tried to use the Sub New but it I don't have access to the url information
what I have is something like:
function Index(byval lang as string) as action result
setLang(lang)
....
return view
end function
function List(byval lang as string) as action result
setLang(lang)
....
return view
end function
function Details(byval id as integer?, byval lang as string) as action result
setLang(lang)
....
return view
end function
.....
is there a generic way I could use so I don't have to deal with the language in EVERY action?