Can this be done? I could not find a property to use.
A reference would be helpful.
Thanks,
ASP.NET.NET ProgrammingMicrosoft Development
Last Comment
Dovberman
8/22/2022 - Mon
kmt333
You can through CSS
<asp:DataList ID="yourDataList" runat="server">
<ItemTemplate>
<div style="width:400px;height:500px; overflow:scroll;">
// Your Content
</div>
</ItemTemplate>
</asp:DataList>
KMT
Jaime Olivares
you can do it indirectly. Put the datalist control inside a div tag with overflow capability. Something like:
I have a tutoring appointment at a local high school. I will try it this afternoon.
I found out that my first student was held back 2 grades after "experts" determined that she could not read. Within 15 minutes, I realized that she was highly intelligent but had vision issues.
The Lion's Club is now involved.
Dovberman
ASKER
Yes, Defining the datalist inside the css statement works.
<asp:DataList ID="yourDataList" runat="server">
<ItemTemplate>
<div style="width:400px;height:
// Your Content
</div>
</ItemTemplate>
</asp:DataList>
KMT