It seems that you are using HTML control (as you are using MenuItemResource1.href)
HTML control cannot interprete ~ (relative path)
Use: MenuItemResource1.href = 'pageURL?ln=en';
Or If you want to assign relative path use asp:HyperLink:
Hyperlink1.NavigateUrl = "~/pageURL?ln=en";
Hope this helps...
Don't forget to mark as answer, if it helps