<% ' --------------------------- 创建连接数据库 --------------------------- '注:以 Access 数据库为连接对象,连接对象名为:Conn。 Set ProduConn = Server.CreateObject("ADODB.Connection") cnnStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source =" & Server.MapPath("Database/Produ.mdb") ProduConn.Open cnnStr Set Conngao = Server.CreateObject("ADODB.Connection") cnnStrgao = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source =" & Server.MapPath("Database/Other.mdb") Conngao.Open cnnStrgao Set ConnNews = Server.CreateObject("ADODB.Connection") cnnStrNews = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source =" & Server.MapPath("Database/News.mdb") ConnNews.Open cnnStrNews Set Conn = Server.CreateObject("ADODB.Connection") cnnStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source =" & Server.MapPath("Database/Book.mdb") Conn.Open cnnStr ' --------------------------- 创建记录集 --------------------------- '注:记录集名 "Rs" 应与表名相加。并以 3, 2 方式打开。 Set ContentRs = Server.CreateObject("ADODB.RecordSet") ContentSQL = "Select * From Content" ContentRs.Open ContentSQL, Conngao, 3, 2 Set ProduRs = Server.CreateObject("ADODB.RecordSet") ProduSQL = "Select * From Produ Order By ID DESC" ProduRs.Open ProduSQL, ProduConn, 3, 2 Set HomeNewsRs = Server.CreateObject("ADODB.RecordSet") HomeNewsSQL = "Select top 8 * From HomeNews Order by ID Desc" HomeNewsRs.Open HomeNewsSQL, ConnNews, 3, 2 Set Produtype = Server.CreateObject("ADODB.RecordSet") Produtype1 = "Select * From Produtype Order By ID DESC" Produtype.Open Produtype1, ProduConn, 3, 2 set Bookrs = Server.CreateObject("ADODB.Recordset") Booksql = "select * from Book" Bookrs.open Booksql,conn,3,2 Dim j j = Produtype.RecordCount Dim Produ_type(30),imaetype(30) For i = 0 to Produtype.RecordCount - 1 Produ_type(i) = Produtype("produtype") imaetype(i)=Produtype("produimage") Produtype.Movenext Next %> 长春净月潭
 How to pay tips when traveling abroad
 Ten cases sound the alarm
 Be wary of travel advertisements
 Look out for “maggot's illness”
 Railway passengers' notice
 Elders do not forget keep health during traveling
 Look out for travel trap
 How to Hold on to Your Money While Traveling
 Notice of skiing
 Travel taboos
 Travel air forecast



   
 
Be wary of travel advertisements
  Details >>
  
Once travel season begins , every city is full of promotion al advertisements for  travel offices. Some professional person s remind travel lovers to look out for travel advertisement.
  
  Flight  Travel agenc ie s will list flights' size in the advertisements , but they won't list the time 。 Generally , the tickets for an i nconven i ent time are cheap. If agenc ie s buy all seats in a flight, the price will much cheaper than normal tickets. Some travel agenc ie s arrange flight s at night in order to save money,which cause s tourists to feel tired and have little interest in the tour the following day.
  
  Accommodation  ravel agenc ie s' advertisement will list the level of hotel. At same star level, the price difference was caused by the hotel's location. If the hotel is n ot in a scen ic area or far way from a scenic area, the price is lower, but the consumers must back and forth from scen ic area and hotel , which cost a lot of time and energy
  
  Food & Beverage  Travel ads list how many meals are provided; some even provide the price of the meal 。 But whether the quality of the food equals its price is a completely different issue. There may be a trick 。
  
  Tour bus  Tourists mainly take tour buses after arriving at their travel destination 。 Some buses are in good condition ; some are not. I.e. some buses have insurance, while some do not 。
  
  Tickets  Several travel agents announced that their travel fees include tickets. However, there is a distinction among tourist attractions: “big tickets” and “small tickets” . " Big tickets” only permit entrance to the gate of the attraction. " Attractions inside attractions,” “ gardens inside gardens” all require extra fees .
  
  Attractions  Several travel agents provide a long list of attractions, which give an impression of a “ rich” trip. However, these lists may be corrupt. One attraction may have several names, or several attractions may have a cheap ticket or be free 。 When you pay, check carefully. Do not look at the price only and ignore the content 。
  
  shopping  the total number of travel days are the same, but the travel agent can arrange many shopping activities. The tour guide doesn't force tourists to go shopping , but it costs much precious time, and shortens sightseeing activities 。 Tourists' cost are not small .
  Wang Chen 
  

   From : Life Times

2002@copy the copyright belonging to Changchun Jingyuetan Tourism Development Co., Ltd.
E-mail:jingyuetan@jingyuetan.com
<% If Request("radiobutton")<>"" then strsql2 = "update Book set Hits =hits+1 Where proname ='"&Request("radiobutton")&"'" conn.execute(strsql2) response.write"" End if %>