求救!网页公告栏梆定
发布网友
发布时间:2022-05-03 01:45
我来回答
共2个回答
热心网友
时间:2022-06-29 05:26
占个位置,我也正在做公告栏.
我的公告栏的想法是:在网页中添加个公告栏的图片,然后添加个让字幕滚动的标记,可是我还没有实现,我也不知道该怎么绑定..
<asp:DataList id="DataList1" runat="server" Width="414px" Height="141px" HorizontalAlign="Center"><ItemTemplate>
公告标题: <asp:Label ID="Label1" runat="server" Text='<%# DataBinder.Eval
(Container.DataItem, "notetittle")%>'></asp:Label><br />
<br />
公告内容: <asp:Label ID="Label2" runat="server" Text='<%# DataBinder.Eval
(Container.DataItem, "notecontent")%>'></asp:Label><br />
公告时间: <asp:Label ID="Label3" runat="server" Text='<%# DataBinder.Eval
(Container.DataItem, "notetime")%>'></asp:Label><br />
<br />
公告发布人: <asp:Label ID="Label4" runat="server" Text='<%# DataBinder.Eval
(Container.DataItem, "noteissuer")%>'></asp:Label>
</ItemTemplate>
</asp:DataList>
后台代码myconn.ConnectionString = System.Configuration.ConfigurationManager.AppSettings["sqlconn"];
myda = new SqlDataAdapter("select notetittle,notecontent,notetime,noteissuer from TT_Content
", myconn);
myda.Fill(myds, "note");
DataList1.DataSource = myds.Tables["note"];
DataList1.DataBind();
热心网友
时间:2022-06-29 05:27
问的莫名其妙