• 滚动条


    滚动条实现:

     <marquee direction="left" scrolldelay="150" onMouseOut="this.start()" onMouseOver="this.stop()"><%=GetNotices() %></marquee>

     public string GetNotices()

            {

                string result = "";

                Notice notice = new Notice();

                DataSet ds = notice.FindNoticeDisplay(5);

                if (ds.Tables[0].Rows.Count > 0)

                {

                    foreach (DataRow dr in ds.Tables[0].Rows)

                    {

                        string id = dr["PKID"].ToString();

                        string title = dr["Title"].ToString();

                        string temp = "<a target='_blank' href='/Purview/LookNotice.aspx?cid=" + id + "' ><font color=#ff0000><strong>" + title + "</strong></font></a>    ";

                        result += temp;

                    }

                }

                return result;

            }

    这些都是博主多年积累的,有些可能是别人的,但博主已经不记得来自哪里了,就不特殊标出了,望见谅!!!!
  • 相关阅读:
    MongoDB入门示例及介绍
    Oracle/PLSQL CURSOR FOR Loop
    JAVA写的文件分割与文件合并程序
    synchronized 解决死锁的问题 轉貼
    采用批处理命令对文件进行解压及采用SQLCMD进行数据库挂载
    chapter6作业
    chapter5作业
    chapter4作业
    Linuz系统管理 -----账号管理
    chapter02
  • 原文地址:https://www.cnblogs.com/objectxhy/p/5896027.html
Copyright © 2020-2023  润新知