G
Guest
Please forgive if this isn't the right place for this question...
A data grid contstructed in ASP .NET (in a .aspx file) might look like this...
<aspataGrid ID="dg" RunAt="server" ...>
<asp:TemplateColumn>
<ItemTemplate>
<asp:Label ID="lbl" RunAt="server" .../>
</ItemTemplate>
</asp:TemplateColumn>
</aspataGrid>
Two apparent inconsistencies stand out, and I wondered what the reasons for
them are:
1) The "RunAt=Server" is key for the <aspataGrid> and the <asp:Label>
tags, but isn't necessary for the <asp:TemplateColumn> tag. Why not?
2) Why doesn't the "<ItemTemplate>" tag require an "<asp:" prefix (i.e.
"<asp:ItemTemplate>" instead of "<ItemTemplate>")?
Thanks!
Keith Spitz
Wall Street On Demand
A data grid contstructed in ASP .NET (in a .aspx file) might look like this...
<aspataGrid ID="dg" RunAt="server" ...>
<asp:TemplateColumn>
<ItemTemplate>
<asp:Label ID="lbl" RunAt="server" .../>
</ItemTemplate>
</asp:TemplateColumn>
</aspataGrid>
Two apparent inconsistencies stand out, and I wondered what the reasons for
them are:
1) The "RunAt=Server" is key for the <aspataGrid> and the <asp:Label>
tags, but isn't necessary for the <asp:TemplateColumn> tag. Why not?
2) Why doesn't the "<ItemTemplate>" tag require an "<asp:" prefix (i.e.
"<asp:ItemTemplate>" instead of "<ItemTemplate>")?
Thanks!
Keith Spitz
Wall Street On Demand