Click here to Skip to main content
15,891,762 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want display textbox in texarea.... it possible or not?

______________________________________
| |
| textbox disply in textarea |
| |
| |
______________________________________
Posted
Comments
Krunal Rohit 23-Mar-14 3:49am    
Why so ??

-KR
Sergey Alexandrovich Kryukov 23-Mar-14 23:06pm    
Good business for those who have nothing useful to do, quite frankly...
—SA
Member 10641779 4-Apr-14 8:43am    
try to increase z-index of textbox in css.

textbox and text area are two different type of textbox. You can not overlap them.
it is type property of textbox control
 
Share this answer
 
Hi,

Why you want to have textbox inside a textarea?it is not good to use textbox inside textarea..

But you can achieve this by setting CSS styles like below

XML
<asp:TextBox ID="TextBox6" runat="server" TextMode="MultiLine" Height="200px" Width="200px"></asp:TextBox>
       <asp:TextBox ID="TextBox7" runat="server" Style="position:absolute;margin:97px 0 0 -180px;padding: 0 0 0 0;"></asp:TextBox>


Thanks,
--RG
 
Share this answer
 

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

  Print Answers RSS


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