all groups > asp.net > june 2004 >
You're in the

asp.net

group:

Setting RowSpan during run time in aspx file


Re: Setting RowSpan during run time in aspx file Rob T
6/9/2004 5:10:09 PM
asp.net:
Try doing something like this:

<td id=tdRow runat=server>a</td>

then in your codebehind, you can set any of the properties of that TD.

[quoted text, click to view]

Re: Setting RowSpan during run time in aspx file bruce barker
6/9/2004 5:43:41 PM
try:

<TD RowSpan="<%=varOrFunctionCall %>">a</TD>

[quoted text, click to view]

Setting RowSpan during run time in aspx file Gawel
6/9/2004 10:44:57 PM
I need necessarily set RowSpan(ColSpan) property of cell in aspx file(not in
cs file).
But below statement does not work :(.
Any idea ?

<TABLE id="Table1" cellSpacing="1" cellPadding="1" width="300" border="1"
runat="server">
<TR>
<TD RowSpan="<%# 3 %>">a</TD>
<TD>a</TD>
<TD>a</TD>
</TR>
<TR>
<TD>a</TD>
<TD>a</TD>
</TR>
<TR>
<TD>a</TD>
<TD>a</TD>
</TR>
</TABLE>


Thanks in advance


Gawel
-------------------------------
Pierwszy ³yk z pucharu nauk przyrodniczych czyni ateist±, ale na dnie
pucharu czeka Bóg.
Werner Heisenberg

Re: Setting RowSpan during run time in aspx file Gawel
6/9/2004 11:17:54 PM
[quoted text, click to view]


Unfortunately, I can NOT use codebehind(cs) files. :(

Gawel

[quoted text, click to view]

Re: Setting RowSpan during run time in aspx file Gawel
6/10/2004 11:43:23 AM
[quoted text, click to view]

Unfortunaltely it does not work :(.
For:
<TD RowSpan="<%=3 %>">a</TD>
I got run time error:
<%=3%> is not a valid value for Int32.

Gawel


[quoted text, click to view]

Re: Setting RowSpan during run time in aspx file Gawel
6/10/2004 12:05:44 PM
I found the solution.
Below statemant works great but one MUST invoke any DataBind() method. It
can
be even this embedded in Page class.

TABLE id="Table1" cellSpacing="1" cellPadding="1" width="300"
runat="server">
<TR>
<TD RowSpan="<%# 3 %>">a</TD>
<TD>a</TD>
<TD>a</TD>
</TR>
<TR>
<TD>a</TD>
<TD>a</TD>
</TR>
<TR>
<TD>a</TD>
<TD>a</TD>
</TR>
</TABLE>


Gawel

AddThis Social Bookmark Button