Hi
im trying to add dropdown list in my master page that select the language and change the language base on page textbox, here is example
Master Page
<asp:DropDownList id="drop1" runat="server">
<asp:ListItem value="en">English</asp:ListItem>
<asp:ListItem value="ar">Arabic</asp:ListItem>
</asp:DropDownList>
Page link with master page
<asp:Button ID="Button1" runat="server" Text="<%$ Resources:WebResources, Button1Caption %>" />
the question is what is the code I need to use?
Go to the complete details ...