NewsNum.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:1k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  4. <title>确认采集新闻</title>
  5. </head>
  6. <link href="FS_css.css" rel="stylesheet">
  7. <body topmargin="0" bgcolor="buttonface" leftmargin="0">
  8. <div align="center">
  9.   <table width="90%" border="0" cellspacing="3" cellpadding="0">
  10. <tr align="center"><td>
  11. <br>欢迎使用风讯新闻采集系统<br>
  12. 如果设计到版权问题与四川风讯科技发展有限公司无关<br>
  13. 确定要使用吗?<br>
  14. </td></tr>
  15.      <tr align="center"> 
  16.        <td>本次采集新闻数量:<input type="text" name='PageNum' value=''></td>
  17.     </tr>
  18.     <tr align="center"> 
  19.       <td height="30">
  20.           <input type="button" onClick="InsertScript()" name="Submit2" value=" 确 定 ">
  21.           <input type="button" onClick="window.returnValue='back';window.close();" name="Submit" value=" 取 消 ">
  22.      </td>
  23.     </tr>
  24.   </table>
  25. </div>
  26. </body>
  27. </html>
  28. <script language="JavaScript">
  29. function InsertScript()
  30. {
  31. var PageNum='';
  32. PageNum=document.all.PageNum.value;
  33. window.returnValue=PageNum;
  34. window.close();
  35. }
  36. window.onunload=SetReturnValue;
  37. function SetReturnValue()
  38. {
  39. if (typeof(window.returnValue)!='string') window.returnValue='';
  40. }
  41. </script>