datagrid-columns

  • Thread starter Thread starter reiks
  • Start date Start date
R

reiks

I have a datagrid with one templatecolumn

I took three texboxes in my template column.But the
problem is that they are get aliged horizontally i.e. one
after the other.

I want the textboxes to be aligned one below the other in
the template column

I know that it's possible through the tablerows ans
tablecells.But I dont want to use them.I ought use only
textboxes and labels
 
reiks said:
I have a datagrid with one templatecolumn

I took three texboxes in my template column.But the
problem is that they are get aliged horizontally i.e. one
after the other.

I want the textboxes to be aligned one below the other in
the template column

I know that it's possible through the tablerows ans
tablecells.But I dont want to use them.I ought use only
textboxes and labels

<asp:TextBox id="TextBox1" runat="Server">
<BR>
<asp:TextBox id="TextBox2" runat="Server">
<BR>
<asp:TextBox id="TextBox2" runat="Server">

It's that simple. Or am I missing something in your question?
 
Back
Top