Click here to Skip to main content
15,900,634 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
is it possible to mirror the login control and have the user name and password labels on the right and the textboxes on the left?
please help me!
Posted
Updated 4-Nov-14 2:38am
v3
Comments
KaushalJB 4-Nov-14 8:20am    
Unclear !!!!!
hamid025 4-Nov-14 8:22am    
refresh your browser to see clear question.
KaushalJB 4-Nov-14 8:25am    
Update your question with your HTML design of Login controls that you have applied.
hamid025 4-Nov-14 8:39am    
my english is not good
Kornfeld Eliyahu Peter 4-Nov-14 8:43am    
HTML has support for RTL - and all modern browsers implement it. So all you have to do is set page direction to RTL...

 
Share this answer
 
Put your control in a panel and then make your panel direction to rtl, You may try something like that:
<asp:Panel id="pnl" runat="server" Direction="RightToLeft" >
Hello World!
</asp:Panel>
 
Share this answer
 
Comments
hamid025 4-Nov-14 8:56am    
for login control this is not worked(panle and dirction to RightToLeft)
I understand that we must use LayoutTemplate tag in login cotrol

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900