<% Dim fso_load Set fso_load = Server.CreateObject("Scripting.FileSystemObject") Dim oTextStream_load Set oTextStream_load = fso_load.OpenTextFile(Server.MapPath("../load.inc"),1) ' 1: ForReading Response.Write oTextStream_load.ReadAll() Set oTextStream_load = Nothing Set fso_load = Nothing %> <% Dim fso1 Set fso1 = Server.CreateObject("Scripting.FileSystemObject") Dim oTextStream1 Set oTextStream1 = fso1.OpenTextFile(Server.MapPath("../header_watercraft_adventures.html"),1) ' 1: ForReading Response.Write oTextStream1.ReadAll() Set oTextStream1 = Nothing Set fso1 = Nothing %> <% Dim fso2 Set fso2 = Server.CreateObject("Scripting.FileSystemObject") Dim oTextStream2 Set oTextStream2 = fso2.OpenTextFile(Server.MapPath("../OLC_footer.html"),1) ' 1: ForReading Response.Write oTextStream2.ReadAll() Set oTextStream2 = Nothing Set fso2 = Nothing %>
 

 


 

How portable is your boat?

Tired of having to transport a fishing boat to the cottage in a separate trailer?  A roll-up or foldable inflatable boat is significantly lighter than a fixed vessel, and it can also be carried to the cottage in a package as small as a suitcase.  If you invest in a inflatable boat, you can fit the entire vessel in your car trunk!

How much do they cost? 

A inflatable fishing boat or motor boat can be obtained for a fraction of the cost of a fixed vessel. 

How much do you pay to rent a fishing boat at the cottage for a weekend?  If we assume a rental price of $100/weekend, then you can easily recuperate the cost of an investment in an inflatable vessel in as few as 6 visits to the cottage!

Are inflatable boats easy to maintain?

All of our vessels are constructed out of German VALMEX material, which is Europe's best inflatable material to ensure airtightness, and high resistance to sun, salt water, punction, abrasion and chemicals.  VALMEX is a 1100 Decitex (1,000 Dernier) material that is coated with a dual-sided acrylic polymer for extra protection.  All of our vessels have multiple inflatable air chambers, and in the unlikely event of a puncture, the chamber that was ruptured can quickly be repaired with a patch kit (included with all vessels).

All of our vessels come with a high pressure foot pump, which will allow you to quickly inflate the vessel in under 30 minutes.

What about safety?

Inflatable boats such as inflatable kayaks, inflatable catamarans, and inflatable sport boats can operate in more shallow waters than a deep hull boat. But many people don’t realize that inflatable boats are just as safe, or even more secure, than traditional boats. Because of their safety reputation, inflatable boats are now essentially the standard for use by the military, coast guard and other rescue agencies worldwide.
 

To follow is a sample of some of the vessels which we recommend.

Luxury Edition Dinghy

Carries 2 adults and 1 child for a water-based adventure

Our slat-floor boat can be conveniently rolled-up in just a few easy minutes.  Each buoyancy chamber or tube in this vessel is U-shaped with rounded airtight cones, and is sized proportionately to the boat's hull dimension.  This multi-purpose craft features:

  • 3-isolated air chambers
  • Quick-assemble wood deck boards
  • Hi-durability PVC fabric
  • Safety rope handle
  • Rubber strake
  • Drain valve
  • Motor-ready transom (can support a 4 HP engine)
  • Oar lock
  • Seating bench
  • Fold-away slatted floorboard
  • 8'2" / 2.5 m in length
  • 4'11" / 1.29 m beam
  • Total weight of 77.2 lbs (35 kg), and a net weight of 64 lbs (29 kg).
  • Can carry 2 adults + 1 child, and support a maximum payload of 529 lbs (240 kg).
Professional Edition Motorboat

Cruise with 3 adults and 1 child in this high-performance vessel.

This inflatable vessel provides you the same high performance as a full-fledged sports boat! 

With a capacity of 3 adults and 1 child, the luxury edition version of Outdoor Leisure Company's multi-purpose sports boat is designed to fulfill every family's weekend adventure.  This boat features an inflatable V-keel hull, which allows for high-speed planing and both improved handling and safety.  The professional edition features:

  • 4-isolated air chambers (including an additional inflatable V-keel air chamber)
  • Quick-assembly solid-wood deck
  • Hi-durability PVC fabric
  • Safety rope handle
  • Rubber strake
  • Drain valve
  • Motor-ready transom (can support a 6 HP engine)
  • Easy carrying handles
  • Seating bench
  • 8'4" / 2.55 m in length
  • 4'10" / 1.5 m beam
  • Total weight of 101.4 lbs (46 kg), and a net weight of 83.8 lbs (38 kg).
  • Can carry 3 adults + 1 child, and support a maximum payload of 705 lbs (320 kg).


&title=Inflatable Boats')">  E-mail this page to a friend!

Comments on This Text

<% set myconn = server.createobject("adodb.connection") connection = "DRIVER={MySQL};SERVER=sqlc2.megasqlservers.com;DATABASE=board_outdoorleisurecompany_com;" & "USER=dbm.outdoorleisurecompany.com;PASSWORD=97145; OPTION=3;" 'connection = "driver={MySQL};server=134.220.4.130;uid=demo;database=mydatabase" myconn.open (connection) set result = server.createobject("adodb.recordset") sql = "SELECT * FROM COMMENT WHERE webpage ='" & "http://www.outdoorleisurecompany.com/watercraft_adventures/inflatable_boat.asp" & "' ORDER BY datetime ASC" set result = myconn.execute(sql) if not result.EOF then while not result.EOF response.write("" & result("login") & " on " & result("datetime") & " -
" & result("message") & "

") result.movenext() wend else response.write("

No comments to date") end if %>
<% Dim fso_feedback Set fso_feedback = Server.CreateObject("Scripting.FileSystemObject") Dim oTextStream_feedback Set oTextStream_feedback = fso_feedback.OpenTextFile(Server.MapPath("/include/feedback.html"),1) ' 1: ForReading Response.Write oTextStream_feedback.ReadAll() Set oTextStream_feedback = Nothing Set fso_feedback = Nothing %> Post a comment
 

Online Poll

<% Dim fso_poll Set fso_poll = Server.CreateObject("Scripting.FileSystemObject") Dim oTextStream_poll src = Server.MapPath("../ASPPoll/db/poll.mdb") Set adoCon = Server.CreateObject("ADODB.Connection") sConnStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & src adoCon.Open sConnStr ID = "3368" strSQL = "SELECT * FROM tblIP WHERE IP = '" & request.servervariables("remote_addr") & "' AND pollID=" & ID SET rsPoll = adoCon.execute(strSQL) IF rsPoll.EOF Then Set oTextStream_poll = fso_poll.OpenTextFile(Server.MapPath("../poll.inc"),1) ' 1: ForReading Response.Write oTextStream_poll.ReadAll() Set oTextStream_poll = Nothing Set fso_poll = Nothing ELSE strSQL="SELECT question FROM tblPoll WHERE ID=" & ID SET rsPoll = adoCon.execute(strSQL) strQuestion = rsPoll.fields("question") rsPoll.close strSQL="SELECT * FROM tblAnswers WHERE ID=" & ID SET rsPoll = adoCon.execute(strSQL) strAnswer1 = rsPoll.fields("Answer1") strAnswer2 = rsPoll.fields("Answer2") strAnswer3 = rsPoll.fields("Answer3") strAnswer4 = rsPoll.fields("Answer4") rsPoll.close strSQL="SELECT * FROM tblCount WHERE ID=" & ID SET rsPoll = adoCon.execute(strSQL) numCount1 = rsPoll.fields("Count1") numCount2 = rsPoll.fields("Count2") numCount3 = rsPoll.fields("Count3") numCount4 = rsPoll.fields("Count4") numTotalVotes = numCount1 + numCount2 + numCount3 + numCount4 rsPoll.close SET rsPoll=nothing adoCon.close SET adoCon=nothing Response.Write("") Response.Write("") Response.Write("") Response.Write("") Response.Write("") Response.Write("") Response.Write("") if not numCount1=0 then Response.Write("") Response.Write("") Response.Write("") else Response.Write("") Response.Write("") Response.Write("") end if Response.Write("") Response.Write("") Response.Write("") if not numCount2=0 then Response.Write("") Response.Write("") Response.Write("") else Response.Write("") Response.Write("") Response.Write("") end if Response.Write("") Response.Write("") Response.Write("") if not numCount3=0 then Response.Write("") Response.Write("") Response.Write("") else Response.Write("") Response.Write("") Response.Write("") end if Response.Write("") Response.Write("") Response.Write("") if not numCount4=0 then Response.Write("") Response.Write("") Response.Write("") else Response.Write("") Response.Write("") Response.Write("") end if Response.Write("") Response.Write("") Response.Write("") END IF %>
") Response.Write("" & strQuestion & "") Response.Write("
") Response.Write(strAnswer1 & " (" & numCount1 & " votes)") Response.Write("
") Response.Write("") Response.Write("
") Response.Write("") Response.Write("
") Response.Write(strAnswer2 & " (" & numCount2 & " votes)") Response.Write("
") Response.Write("") Response.Write("
") Response.Write("") Response.Write("
") Response.Write(strAnswer3 & " (" & numCount3 & " votes)") Response.Write("
") Response.Write("") Response.Write("
") Response.Write("") Response.Write("
") Response.Write(strAnswer4 & " (" & numCount4 & " votes)") Response.Write("
") Response.Write("") Response.Write("
") Response.Write("") Response.Write("
") Response.Write("Total Votes " & formatnumber(numTotalVotes,0) & "") Response.Write("
Powered By ASP Poll