就像网易泡泡一样,有新信息来时,就在窗口上弹出一个新的提示框
也好像本论坛上的短信通知一样,只是差在弹出提示而已

解决方案 »

  1.   

    用frame包含一页,该页是定期创新,到数据库里检查是否有新记录。
      

  2.   

    1.试试第三方控件
    2.一个从屏幕外移入的窗口
    3.MessageBox.show()
      

  3.   

    <head>
    <!-- 每10秒自动刷新 -->
    <meta http-equiv="refresh" content="10">
    </head>1.模态窗口的打开
    2.模态窗口的关闭
    3.模态窗口的传递参数。
    4.其他。
    1.window.showModalDialog("DialogPage.aspx","newwin","dialogHeight: 200px; dialogWidth: 150px; dialogTop: 458px; dialogLeft: 166px; edge: Raised; center: Yes; help: Yes; resizable: Yes; status: Yes;");2.window.close();3.传值
    ParentPage.aspx:
    window.showModalDialog("DialogPage.aspx?para1=aaa&para2=bbb");DialogPage.aspx:
    string str1=Request.QueryString["para1"].toString();
    string str2=Request.QueryString["para2"].toString();返回值
    DialogPage.aspx:
    window.returnValue="aaa";ParentPage.aspx:
    var str=window.showModalDialog("DialogPage.aspx");
      

  4.   

    可以学CSDN的短消息,我同意gshope(北京.Net) 的
    用frame包含一页,该页是定期创新,到数据库里检查是否有新记录。1.window.showModalDialog("DialogPage.aspx","newwin","dialogHeight: 200px; dialogWidth: 150px; dialogTop: 458px; dialogLeft: 166px; edge: Raised; center: Yes; help: Yes; resizable: Yes; status: Yes;");2.window.close();3.传值
    ParentPage.aspx:
    window.showModalDialog("DialogPage.aspx?para1=aaa&para2=bbb");DialogPage.aspx:
    string str1=Request.QueryString["para1"].toString();
    string str2=Request.QueryString["para2"].toString();返回值
    DialogPage.aspx:
    window.returnValue="aaa";ParentPage.aspx:
    var str=window.showModalDialog("DialogPage.aspx");
      

  5.   

    用frame包含一页,该页是定期创新,到数据库里检查是否有新记录。
    如果有新記錄,就彈出類同於delphi園地的彈出小窗口一樣的效果。。
      

  6.   

    好像我没有办法用window.showModalDialog这个啊
      

  7.   

    http://community.csdn.net/Expert/topic/3404/3404062.xml?temp=3.215969E-03
      

  8.   

    本论坛使用的是框架局部刷新,你看到的那一条黑色的是一个框架,里面的内容在自动刷新。
    强烈同意goody9807() 的方法。
      

  9.   

    frame包含定时刷新的页面,检查数据库里是否有新记录
      

  10.   

    怎么引用  window.showModalDialog
      

  11.   

    response.write("<script>window.showModalDialog(\"DialogPage.aspx\",\"newwin\",\"dialogHeight: 200px; dialogWidth: 150px; dialogTop: 458px; dialogLeft: 166px; edge: Raised; center: Yes; help: Yes; resizable: Yes; status: Yes;\")</script>");
      

  12.   

    http://community.csdn.net/Expert/topic/3542/3542686.xml?temp=.8996088请帮忙顶一个,有分
      

  13.   

    guying999(求知) ( )
    8错!
      

  14.   

    VBS用msgbox, javas用alert
    一般消息框用在前端脚本实现