home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / ins.cab / admin.asp < prev    next >
Text File  |  1997-10-12  |  4KB  |  110 lines

  1. <%
  2. REM Localization
  3.  
  4. L_PAGETITLE_HTMLTitle            = "News Offline Search Admin" 
  5. L_MAILPICKUP_EditBox            = "Mail Pickup Directory:"
  6. L_EDITURL_EditBox                = "Edit URL:"
  7. L_QUERYSERVER_EditBox            = "Query Server:"
  8. L_MESSAGESTRING_EditBox            = "Message Template String:"
  9. L_MESSAGEFILE_EditBox            = "Message Template File:"
  10. L_URLTEMPLATESTRING_EditBox        = "URL Template String:"
  11. L_URLTEMPLATEFILE_EditBox        = "URL Template File:"
  12. L_LASTSEARCHDATE_EditBox        = "Last Search Date:"
  13. L_FROMLINE_EditBox                = "From Line:"
  14. L_SUBJECTLINE_EditBox            = "Subject Line:"
  15. L_QUERYCATALOG_EditBox            = "Query CataLog:"
  16. L_DEFAULTSEARCHFREQ_EditBox        = "Default Search Frequency:"
  17. L_NEWSPICKUP_EditBox            = "News Pickup Directory:"
  18. L_NEWSSERVER_EditBox            = "News Server:"
  19.  
  20. REM END Localization
  21. %>
  22.  
  23. <HTML>
  24. <HEAD>
  25. <META NAME="GENERATOR" Content="Microsoft Developer Studio">
  26. <META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
  27. <TITLE><%= L_PAGETITLE_HTMLTitle %></TITLE>
  28. </HEAD>
  29. <BODY background="images\gnback.gif" text="white" >
  30. <% set ad = Server.CreateObject("req.req.1") %>
  31. <p align="center"><font size="3"><strong><%= L_MAILPICKUP_EditBox %></strong></font>
  32. </p>
  33.  
  34.  
  35. <form method="POST" action="adminres.asp">
  36.  
  37.     <p align="center"><input type="text" size="50" name="mail_dir"
  38.     value = "<% = ad.property("mail_pickup_dir")%>"></p>
  39.  
  40.     <p align="center"><strong><%= L_NEWSPICKUP_EditBox %></strong></p>
  41.  
  42.     <p align="center"><input type="text" size="50" name="news_dir"
  43.     value = "<% = ad.property("news_pickup_dir")%>"></p>
  44.  
  45.     <p align="center"><strong><%= L_EDITURL_EditBox %></strong></p>
  46.  
  47.     <p align="center"><input type="text" size="50" name="edit_url"
  48.     value="<%= ad.property("edit_url")%>"></p>
  49.  
  50.     <p align="center"><strong><%= L_QUERYSERVER_EditBox %></strong></p>
  51.  
  52.     <p align="center"><input type="text" size="50" name="query_server"
  53.     value="<%= ad.property("query_server")%>"></p>
  54.  
  55.     <p align="center"><strong><%= L_NEWSSERVER_EditBox %></strong></p>
  56.  
  57.     <p align="center"><input type="text" size="50" name="news_server"
  58.     value="<%= ad.property("news_server")%>"></p>
  59.  
  60.     <p align="center"><strong><%= L_MESSAGESTRING_EditBox %></strong></p>
  61.  
  62.     <p align="center"><TEXTAREA name="message_template_string" COLS="50" ROWS="5"
  63.     maxlength="1000"><%=ad.property("message_template_text")%></textarea></p>
  64.     
  65.     <p align="center"><strong><%= L_MESSAGEFILE_EditBox %></strong></p>
  66.  
  67.     <p align="center"><input type="TEXT" size="50" name="message_template_file"
  68.     value="<%= ad.property("message_template_file")%>"></p>
  69.  
  70.     <p align="center"><strong><%= L_URLTEMPLATESTRING_EditBox %></strong></p>
  71.  
  72.     <p align="center"><TEXTAREA name="url_template_string" COLS="50" ROWS="5"
  73.     maxLength="1000"><%=ad.property("url_template_text")%></textarea></p>
  74.     
  75.     <p align="center"><strong><%= L_URLTEMPLATEFILE_EditBox %></strong></p>
  76.  
  77.     <p align="center"><input type="text" size="50" name="url_template_file"
  78.     value="<%= ad.property("url_template_file")%>"></p>
  79.  
  80.     <p align="center"><strong><%= L_LASTSEARCHDATE_EditBox %></strong></p>
  81.  
  82.     <p align="center"><input type="text" size="50" name="last_search"
  83.     value="<%= ad.property("last_search")%>"></p>
  84.  
  85.     <p align="center"><strong><%= L_FROMLINE_EditBox %></strong></p>
  86.  
  87.     <p align="center"><input type="text" size="50" name="from_line"
  88.     value="<%= ad.property("from_line")%>"></p>
  89.  
  90.     <p align="center"><strong><%= L_SUBJECTLINE_EditBox %></strong></p>
  91.     
  92.     <p align="center"><input type="text" size="50" name="subject_line"
  93.     value="<%= ad.property("subject_line")%>"></p>
  94.  
  95.     <p align="center"><strong><%= L_QUERYCATALOG_EditBox %></strong></p>
  96.  
  97.     <p align="center"><input type="text" size="50" name="query_catalog"
  98.     value="<%= ad.property("query_catalog")%>"></p>
  99.  
  100.     <p align="center"><strong><%= L_DEFAULTSEARCHFREQ_EditBox %></strong></p>
  101.  
  102.     <p align="center"><input type="text" size="50" name="search_frequency"
  103.     value="<%= ad.property("search_frequency")%>"></p>
  104.  
  105.     <p align="center"><input type="submit" name="B1"
  106.     value="Submit"><input type="reset" name="B2" value="Reset"></p>
  107. </form>
  108. </body>
  109. </html>
  110.