But don't pass us by.
Whether you need one trailer, a stack of trailers, or a custom trailer, "Look us over!" With our quality trailers, competitive pricing, and large production capacity, Jerry James Trailers is the only stop you need to make in Sikeston.
We
build a complete line of single axle trailers, tandem axle trailers, gooseneck trailers, utility
trailers, landscape trailers, car hauler trailers, light, medium, and
heavy duty bumper pull trailers, flatbed trailers, dump trailers, tilt trailers, equipment trailers, bobcat trailers,
specialty trailers, and atv trailers. We also custom build trailers to meet
your toughest hauling needs.
Jerry
James Trailers is one of the original Sikeston trailer manufacturers. Our business is
centered on providing the highest quality trailers and backed up by
a customer service philosophy that keeps our dealers and customers coming back.
With an inventory of over 1,500 trailers of all sizes, styles, and colors,
the trailer you want is probably in stock. If we don't have exactly what
you are looking for, let us custom build a trailer to meet your needs.
And did we mention price? We pride ourselves on giving you the best value
for your trailer buying dollar.
<%
on error resume next
' Create a server object
set fso = createobject("scripting.filesystemobject")
' Target the text file to be opened
set act = fso.opentextfile(server.mappath("asp_count.txt"))
' Read the value of the text document
' If the text document does not exist then the on error resume next
' will drop down to the next line
counter = clng(act.readline)
' Add one to the counter
counter = counter + 1
' Close the object
act.close
' Create a new text file on the server
Set act = fso.CreateTextFile(server.mappath("asp_count.txt"), true)
' Write the current counter value to the text document
act.WriteLine(counter)
' Close the object
act.Close
' Write the counter to the browser as text
Response.Write counter
%>