Click to See Complete Forum and Search --> : help with text direction


redfox
04-03-2006, 01:57 AM
okay this is my problem i want my text in my textbox to appear like this

example:
normal view of text in text box james

now this is what i want it to appear

j
a
m
e
s

how can i accomplish this text preview would be displayed vertically

any help would be really appreciated thanks in advance

handshakeit
04-03-2006, 02:54 AM
Do you want this
try thi out
<asp:TextBox ID="TextBox1" runat="server" Columns="1" TextMode="MultiLine" Width="30px"></asp:TextBox>

handshakeit
04-03-2006, 02:58 AM
here column is the property to set the no of chars in a line
and if you want to display any name vertically u should know the no. of chars in it
then you can set the Rows property equal to that

Hope that u want

redfox
04-03-2006, 03:30 AM
thank you guys