Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Re: AddNew record error

    Don't create a recordset. Just insert your data:

    sSQL = "INSERT INTO TheTable [Firstname]='" & request.form("firstname") &
    "',[Lastname]='" & Request.form("lastName") & "'"
    Set oADO = Server.CreateObject("ADODB.Connection")
    oADO.Open "DSN=mydsn"
    oADO.Execute sSQL
    oADO.Close
    Set oADO = Nothing

    After you have that working, drop the usage of a DSN and change the code to
    oADO.Open YourConnectionString
    [url]www.connectionstrings.com[/url]

    Ray at home

    --
    Will trade ASP help for SQL Server help


    "John Davis" <jrefactor@hotmail.com> wrote in message
    news:OzY5xR9UDHA.1744@TK2MSFTNGP12.phx.gbl...
    > I wrote a ASP page to add a new record using ADO to SQL Server, but it has
    > the following error. If I return the records in the database, it is
    working
    > fine. Any ideas?? Please advice!!
    >
    > <%
    > Dim rs
    > Set rs = Server.CreateObject("ADODB.Recordset")
    > rs.Open "Member", "DSN=mydsn"
    > rs.AddNew
    > rs.Fields("FirstName") = Request.Form("firstName")
    > rs.Fields("LastName") = Request.Form("lastName")
    > rs.Update
    > rs.Close
    > %>
    >
    >
    > Error Type:
    > ADODB.Recordset (0x800A0CB3)
    > Current Recordset does not support updating. This may be a limitation of
    the
    > provider, or of the selected locktype.
    > /iishelp/iis/quiz/addmember.asp, line 13
    >
    >

    Ray at Guest

  2. Similar Questions and Discussions

    1. Need Help with Record Insert Error
      Hi Coldfuschions, I am a novice and am trying to use the Record Insertion Form Wizard in D8/ColdFusion to add a record to a MS Access database. ...
    2. Please Help! Error when inserting record...
      I am using ColdFusion MX 6.1 and am having issues with inserting a record into an access database. Any help on what is wrong? Error Executing...
    3. update record error
      hi, I have a list of items which are input by people I have had it set up with DMX and .ASP for ages but now I have moved to Coldfusion and am...
    4. Error when inserting record
      When trying to use the server behavior "Insert Record" I get the following error message: While executing onLOad in Insert Record.htm, the...
    5. Using SQL Query Or AddNew
      In order to insert records in a SQL Server 7.0 database table, is it better to use a SQL query or is it better to use AddNew? For e.g. records can...
  3. #2

    Default Re: AddNew record error

    Don't create a recordset. Just insert your data:

    sSQL = "INSERT INTO TheTable [Firstname]='" & request.form("firstname") &
    "',[Lastname]='" & Request.form("lastName") & "'"
    Set oADO = Server.CreateObject("ADODB.Connection")
    oADO.Open "DSN=mydsn"
    oADO.Execute sSQL
    oADO.Close
    Set oADO = Nothing

    After you have that working, drop the usage of a DSN and change the code to
    oADO.Open YourConnectionString
    [url]www.connectionstrings.com[/url]

    Ray at home

    --
    Will trade ASP help for SQL Server help


    "John Davis" <jrefactor@hotmail.com> wrote in message
    news:OzY5xR9UDHA.1744@TK2MSFTNGP12.phx.gbl...
    > I wrote a ASP page to add a new record using ADO to SQL Server, but it has
    > the following error. If I return the records in the database, it is
    working
    > fine. Any ideas?? Please advice!!
    >
    > <%
    > Dim rs
    > Set rs = Server.CreateObject("ADODB.Recordset")
    > rs.Open "Member", "DSN=mydsn"
    > rs.AddNew
    > rs.Fields("FirstName") = Request.Form("firstName")
    > rs.Fields("LastName") = Request.Form("lastName")
    > rs.Update
    > rs.Close
    > %>
    >
    >
    > Error Type:
    > ADODB.Recordset (0x800A0CB3)
    > Current Recordset does not support updating. This may be a limitation of
    the
    > provider, or of the selected locktype.
    > /iishelp/iis/quiz/addmember.asp, line 13
    >
    >

    Ray at Guest

  4. #3

    Default Re: AddNew record error

    John Davis wrote:
    > I wrote a ASP page to add a new record using ADO to SQL Server, but
    > it has the following error. If I return the records in the database,
    > it is working fine. Any ideas?? Please advice!!
    >
    > <%
    > Dim rs
    > Set rs = Server.CreateObject("ADODB.Recordset")
    > rs.Open "Member", "DSN=mydsn"
    > rs.AddNew
    > rs.Fields("FirstName") = Request.Form("firstName")
    > rs.Fields("LastName") = Request.Form("lastName")
    > rs.Update
    > rs.Close
    > %>
    >
    >
    > Error Type:
    > ADODB.Recordset (0x800A0CB3)
    > Current Recordset does not support updating. This may be a limitation
    > of the provider, or of the selected locktype.
    > /iishelp/iis/quiz/addmember.asp, line 13
    You've probably opened a read-only recordset.
    1. You should not be using a recordset to add records anyways. You should be
    doing all data modifications via SQL statements, preferably SQL statements
    in stored procedures.
    2. You should not be using ODBC: there is a perfectly good OLEDB provider
    for SQL Server that you can use. See [url]www.connectionstrings.com[/url] for help in
    building a connection string using the SQLOLEDB provider.

    Try this. Run this script on your SQL Server using Query Analyzer:

    create procedure AddMember (
    @fname varchar(50),
    @lname varchar(50)
    ) as
    insert into Member (FirstName,LastName)
    values(@fname,@lname)
    go

    Then in asp:

    <%
    dim cn, sFirst, sLast
    sFirst = Request.Form("firstName")
    sLast = Request.Form("lastName")
    if len(sFirst) > 0 and len(sLast) > 0 then
    set cn = server.createobject("adodb.connection")
    cn.AddMember sFirst, sLast
    else
    response.write "No data was submitted"
    end if
    %>

    HTH,
    Bob Barrows


    Bob Barrows Guest

  5. #4

    Default Re: AddNew record error

    John Davis wrote:
    > I wrote a ASP page to add a new record using ADO to SQL Server, but
    > it has the following error. If I return the records in the database,
    > it is working fine. Any ideas?? Please advice!!
    >
    > <%
    > Dim rs
    > Set rs = Server.CreateObject("ADODB.Recordset")
    > rs.Open "Member", "DSN=mydsn"
    > rs.AddNew
    > rs.Fields("FirstName") = Request.Form("firstName")
    > rs.Fields("LastName") = Request.Form("lastName")
    > rs.Update
    > rs.Close
    > %>
    >
    >
    > Error Type:
    > ADODB.Recordset (0x800A0CB3)
    > Current Recordset does not support updating. This may be a limitation
    > of the provider, or of the selected locktype.
    > /iishelp/iis/quiz/addmember.asp, line 13
    You've probably opened a read-only recordset.
    1. You should not be using a recordset to add records anyways. You should be
    doing all data modifications via SQL statements, preferably SQL statements
    in stored procedures.
    2. You should not be using ODBC: there is a perfectly good OLEDB provider
    for SQL Server that you can use. See [url]www.connectionstrings.com[/url] for help in
    building a connection string using the SQLOLEDB provider.

    Try this. Run this script on your SQL Server using Query Analyzer:

    create procedure AddMember (
    @fname varchar(50),
    @lname varchar(50)
    ) as
    insert into Member (FirstName,LastName)
    values(@fname,@lname)
    go

    Then in asp:

    <%
    dim cn, sFirst, sLast
    sFirst = Request.Form("firstName")
    sLast = Request.Form("lastName")
    if len(sFirst) > 0 and len(sLast) > 0 then
    set cn = server.createobject("adodb.connection")
    cn.AddMember sFirst, sLast
    else
    response.write "No data was submitted"
    end if
    %>

    HTH,
    Bob Barrows


    Bob Barrows Guest

  6. #5

    Default Re: AddNew record error

    Bob Barrows wrote:
    >
    > <%
    > dim cn, sFirst, sLast
    > sFirst = Request.Form("firstName")
    > sLast = Request.Form("lastName")
    > if len(sFirst) > 0 and len(sLast) > 0 then
    > set cn = server.createobject("adodb.connection")
    > cn.AddMember sFirst, sLast
    cn.close
    set cn=nothing
    > else
    > response.write "No data was submitted"
    > end if
    > %>
    >
    > HTH,
    > Bob Barrows
    I would also like to edit my post and add the lines to close and destroy the
    connection object ... :]

    Bob Barrows



    Bob Barrows Guest

  7. #6

    Default Re: AddNew record error

    Bob Barrows wrote:
    >
    > <%
    > dim cn, sFirst, sLast
    > sFirst = Request.Form("firstName")
    > sLast = Request.Form("lastName")
    > if len(sFirst) > 0 and len(sLast) > 0 then
    > set cn = server.createobject("adodb.connection")
    > cn.AddMember sFirst, sLast
    cn.close
    set cn=nothing
    > else
    > response.write "No data was submitted"
    > end if
    > %>
    >
    > HTH,
    > Bob Barrows
    I would also like to edit my post and add the lines to close and destroy the
    connection object ... :]

    Bob Barrows



    Bob Barrows Guest

  8. #7

    Default Re: AddNew record error

    Bob Barrows wrote:
    > Bob Barrows wrote:
    >>
    >> <%
    >> dim cn, sFirst, sLast
    >> sFirst = Request.Form("firstName")
    >> sLast = Request.Form("lastName")
    >> if len(sFirst) > 0 and len(sLast) > 0 then
    >> set cn = server.createobject("adodb.connection")
    cn.open "provider=sqloledb;data source=servername;" & _
    "user name=xxxx;password=xxxx"
    >> cn.AddMember sFirst, sLast
    > cn.close
    > set cn=nothing
    >> else
    >> response.write "No data was submitted"
    >> end if
    >> %>
    >>
    >> HTH,
    >> Bob Barrows
    >
    > I would also like to edit my post and add the lines to close and
    > destroy the connection object ... :]
    >
    > Bob Barrows
    Oh! And of course it would help to add the line to open the connection as
    well ... duhh!


    Bob Barrows Guest

  9. #8

    Default Re: AddNew record error

    Bob Barrows wrote:
    > Bob Barrows wrote:
    >>
    >> <%
    >> dim cn, sFirst, sLast
    >> sFirst = Request.Form("firstName")
    >> sLast = Request.Form("lastName")
    >> if len(sFirst) > 0 and len(sLast) > 0 then
    >> set cn = server.createobject("adodb.connection")
    cn.open "provider=sqloledb;data source=servername;" & _
    "user name=xxxx;password=xxxx"
    >> cn.AddMember sFirst, sLast
    > cn.close
    > set cn=nothing
    >> else
    >> response.write "No data was submitted"
    >> end if
    >> %>
    >>
    >> HTH,
    >> Bob Barrows
    >
    > I would also like to edit my post and add the lines to close and
    > destroy the connection object ... :]
    >
    > Bob Barrows
    Oh! And of course it would help to add the line to open the connection as
    well ... duhh!


    Bob Barrows Guest

  10. #9

    Default Re: AddNew record error

    > insert into thetable ([firstname],[lastname]) values ('" &
    > request.form("lastname") & "','" & request.form("lastname") & "')"
    You should also be replacing any single instances of ' to avoid errors or,
    worse, SQL injection.


    Aaron Bertrand [MVP] Guest

  11. #10

    Default Re: AddNew record error

    > insert into thetable ([firstname],[lastname]) values ('" &
    > request.form("lastname") & "','" & request.form("lastname") & "')"
    You should also be replacing any single instances of ' to avoid errors or,
    worse, SQL injection.


    Aaron Bertrand [MVP] Guest

  12. #11

    Default Re: AddNew record error

    You are correct, although my sites, I'd never pull right from request.form
    right into a sql query anyway. John will post back in a few days asking how
    to deal with thing likes "O'Brien" and we'll cover this then. ;]

    Ray at home
    --
    Will trade ASP help for SQL Server help


    "Aaron Bertrand [MVP]" <aaron@TRASHaspfaq.com> wrote in message
    news:umMwbO$UDHA.2156@TK2MSFTNGP11.phx.gbl...
    > > insert into thetable ([firstname],[lastname]) values ('" &
    > > request.form("lastname") & "','" & request.form("lastname") & "')"
    >
    > You should also be replacing any single instances of ' to avoid errors or,
    > worse, SQL injection.
    >
    >

    Ray at Guest

  13. #12

    Default Re: AddNew record error

    You are correct, although my sites, I'd never pull right from request.form
    right into a sql query anyway. John will post back in a few days asking how
    to deal with thing likes "O'Brien" and we'll cover this then. ;]

    Ray at home
    --
    Will trade ASP help for SQL Server help


    "Aaron Bertrand [MVP]" <aaron@TRASHaspfaq.com> wrote in message
    news:umMwbO$UDHA.2156@TK2MSFTNGP11.phx.gbl...
    > > insert into thetable ([firstname],[lastname]) values ('" &
    > > request.form("lastname") & "','" & request.form("lastname") & "')"
    >
    > You should also be replacing any single instances of ' to avoid errors or,
    > worse, SQL injection.
    >
    >

    Ray at Guest

  14. #13

    Default Re: AddNew record error

    Hi all

    Are u using Access DB with NT/2000/xp?
    if so , please check your access DB, have u got WR right to Iuser?

    KR
    Perkin

    "John Davis" <jrefactor@hotmail.com> ¼¶¼g©ó¶l¥ó·s»D
    :OzY5xR9UDHA.1744@TK2MSFTNGP12.phx.gbl...
    > I wrote a ASP page to add a new record using ADO to SQL Server, but it has
    > the following error. If I return the records in the database, it is
    working
    > fine. Any ideas?? Please advice!!
    >
    > <%
    > Dim rs
    > Set rs = Server.CreateObject("ADODB.Recordset")
    > rs.Open "Member", "DSN=mydsn"
    > rs.AddNew
    > rs.Fields("FirstName") = Request.Form("firstName")
    > rs.Fields("LastName") = Request.Form("lastName")
    > rs.Update
    > rs.Close
    > %>
    >
    >
    > Error Type:
    > ADODB.Recordset (0x800A0CB3)
    > Current Recordset does not support updating. This may be a limitation of
    the
    > provider, or of the selected locktype.
    > /iishelp/iis/quiz/addmember.asp, line 13
    >
    >

    ¦a²y¤H Guest

  15. #14

    Default Re: AddNew record error

    Hi all

    Are u using Access DB with NT/2000/xp?
    if so , please check your access DB, have u got WR right to Iuser?

    KR
    Perkin

    "John Davis" <jrefactor@hotmail.com> ¼¶¼g©ó¶l¥ó·s»D
    :OzY5xR9UDHA.1744@TK2MSFTNGP12.phx.gbl...
    > I wrote a ASP page to add a new record using ADO to SQL Server, but it has
    > the following error. If I return the records in the database, it is
    working
    > fine. Any ideas?? Please advice!!
    >
    > <%
    > Dim rs
    > Set rs = Server.CreateObject("ADODB.Recordset")
    > rs.Open "Member", "DSN=mydsn"
    > rs.AddNew
    > rs.Fields("FirstName") = Request.Form("firstName")
    > rs.Fields("LastName") = Request.Form("lastName")
    > rs.Update
    > rs.Close
    > %>
    >
    >
    > Error Type:
    > ADODB.Recordset (0x800A0CB3)
    > Current Recordset does not support updating. This may be a limitation of
    the
    > provider, or of the selected locktype.
    > /iishelp/iis/quiz/addmember.asp, line 13
    >
    >

    ¦a²y¤H Guest

  16. #15

    Default Re: AddNew record error

    On Sun, 27 Jul 2003 00:12:52 -0400, "Ray at <%=sLocation%>"
    <myfirstname at lane34 dot com> wrote:
    >You are correct, although my sites, I'd never pull right from request.form
    >right into a sql query anyway. John will post back in a few days asking how
    >to deal with thing likes "O'Brien" and we'll cover this then. ;]
    >
    >Ray at home
    Not to be churlish or anything, but I suggest that it is not
    appropriate to use

    insert into thetable ([firstname],[lastname]) values ('" &
    request.form("lastname") & "','" & request.form("lastname") & "')"

    in *any* case. One should always use the ADO Command object and
    placeholders, as follows:

    cmd.commandtext = "insert into thetable ([firstname],[lastname])
    values (?,?)"
    cmd.execute lngRecs,array(request.form("firstname"), _
    request.form("lastname"))

    personally, I prefer this to other methods like

    strFirst=replace(request.form("firstname"),"'","'' ")

    which does address the quote problem but still allows user input into
    the SQL String - a security No-No. IMO, using the placeholder method
    is easier to read and safer. One never wants to be in the situation
    where the user can type input directly into the SQL server which is
    what happens when one uses syntax like the above example.

    My 2 cents,

    Dan Bush
    [email]me@R3MOV3.danbush.com[/email]
    Daniel Bush Guest

  17. #16

    Default Re: AddNew record error

    On Sun, 27 Jul 2003 00:12:52 -0400, "Ray at <%=sLocation%>"
    <myfirstname at lane34 dot com> wrote:
    >You are correct, although my sites, I'd never pull right from request.form
    >right into a sql query anyway. John will post back in a few days asking how
    >to deal with thing likes "O'Brien" and we'll cover this then. ;]
    >
    >Ray at home
    Not to be churlish or anything, but I suggest that it is not
    appropriate to use

    insert into thetable ([firstname],[lastname]) values ('" &
    request.form("lastname") & "','" & request.form("lastname") & "')"

    in *any* case. One should always use the ADO Command object and
    placeholders, as follows:

    cmd.commandtext = "insert into thetable ([firstname],[lastname])
    values (?,?)"
    cmd.execute lngRecs,array(request.form("firstname"), _
    request.form("lastname"))

    personally, I prefer this to other methods like

    strFirst=replace(request.form("firstname"),"'","'' ")

    which does address the quote problem but still allows user input into
    the SQL String - a security No-No. IMO, using the placeholder method
    is easier to read and safer. One never wants to be in the situation
    where the user can type input directly into the SQL server which is
    what happens when one uses syntax like the above example.

    My 2 cents,

    Dan Bush
    [email]me@R3MOV3.danbush.com[/email]
    Daniel Bush Guest

  18. #17

    Default Re: AddNew record error

    > insert into thetable ([firstname],[lastname]) values ('" &
    > request.form("lastname") & "','" & request.form("lastname") & "')"
    >
    > in *any* case. One should always use the ADO Command object and
    > placeholders, as follows:
    >
    > cmd.commandtext = "insert into thetable ([firstname],[lastname])
    > values (?,?)"
    > cmd.execute lngRecs,array(request.form("firstname"), _
    > request.form("lastname"))
    Huh? What's the difference?

    In either case, the user can still put something like this into firstname:

    'foo','bar'); TRUNCATE TABLE thetable; --

    cmd.execute will still happily put that into commandtext and execute it (and
    in this case, it won't matter what the user puts into lastname, because it
    will be commented out). At least with the replace of single quotes, the
    above input will be problematic and will not cause the TRUNCATE to be
    executed (instead, a syntax error will occur).

    My point being, as long as the user can enter anything, no matter what
    method you use, you will be vulnerable to injection attacks. My preference
    over both of these methods is to use a stored procedure or stored query...
    then you can control the datatypes of incoming parameters *and* have greater
    control over how the SQL statement is built.


    Aaron Bertrand - MVP Guest

  19. #18

    Default Re: AddNew record error

    > insert into thetable ([firstname],[lastname]) values ('" &
    > request.form("lastname") & "','" & request.form("lastname") & "')"
    >
    > in *any* case. One should always use the ADO Command object and
    > placeholders, as follows:
    >
    > cmd.commandtext = "insert into thetable ([firstname],[lastname])
    > values (?,?)"
    > cmd.execute lngRecs,array(request.form("firstname"), _
    > request.form("lastname"))
    Huh? What's the difference?

    In either case, the user can still put something like this into firstname:

    'foo','bar'); TRUNCATE TABLE thetable; --

    cmd.execute will still happily put that into commandtext and execute it (and
    in this case, it won't matter what the user puts into lastname, because it
    will be commented out). At least with the replace of single quotes, the
    above input will be problematic and will not cause the TRUNCATE to be
    executed (instead, a syntax error will occur).

    My point being, as long as the user can enter anything, no matter what
    method you use, you will be vulnerable to injection attacks. My preference
    over both of these methods is to use a stored procedure or stored query...
    then you can control the datatypes of incoming parameters *and* have greater
    control over how the SQL statement is built.


    Aaron Bertrand - MVP Guest

  20. #19

    Default Re: AddNew record error

    Aaron Bertrand - MVP wrote:
    >> insert into thetable ([firstname],[lastname]) values ('" &
    >> request.form("lastname") & "','" & request.form("lastname") & "')"
    >>
    >> in *any* case. One should always use the ADO Command object and
    >> placeholders, as follows:
    >>
    >> cmd.commandtext = "insert into thetable ([firstname],[lastname])
    >> values (?,?)"
    >> cmd.execute lngRecs,array(request.form("firstname"), _
    >> request.form("lastname"))
    >
    > Huh? What's the difference?
    >
    > In either case, the user can still put something like this into
    > firstname:
    >
    > 'foo','bar'); TRUNCATE TABLE thetable; --
    >
    I don't think that's quite right Aaron. We are now passing parameters, not
    concatenating. The truncate statement would appear inside the values block
    and would cause at least a syntax error - although, I suppose there's a
    chance that the string would get inserted into the column if it's not a
    numeric column.

    I just tried it - the string does get inserted as-is. See for yourself:

    CREATE TABLE dbo.InjectTest
    (
    FirstName varchar(80) NULL,
    LastName varchar(80) NULL
    )
    go
    insert injecttest
    select 'foo','bar'
    union all
    select 'foo1','bar1'
    union all
    select 'foo2','bar2'


    <%
    option explicit
    dim cn, sSQL,cmd, rs

    set cn=server.CreateObject("adodb.connection")

    sSQL="insert into InjectTest values(?,?)"
    cn.open "provider=sqloledb;data source=censored;" & _
    "user id = censored; password=censored;initial catalog=test"

    set cmd=Server.CreateObject("ADODB.Command")
    cmd.CommandText=sSQL
    Set cmd.ActiveConnection = cn
    cmd.Execute , _
    array("'foo','bar'); TRUNCATE TABLE thetable; --","any"), _
    adCmdText + adExecuteNoRecords
    set rs=server.CreateObject("adodb.recordset")
    set rs = cn.Execute("select * from injecttest",,adCmdText)
    Response.Write rs.getstring(,," | ","<BR>")
    rs.Close
    set rs=nothing
    cn.close
    set cn=nothing
    %>

    Bob


    Bob Barrows Guest

  21. #20

    Default Re: AddNew record error

    Aaron Bertrand - MVP wrote:
    >> insert into thetable ([firstname],[lastname]) values ('" &
    >> request.form("lastname") & "','" & request.form("lastname") & "')"
    >>
    >> in *any* case. One should always use the ADO Command object and
    >> placeholders, as follows:
    >>
    >> cmd.commandtext = "insert into thetable ([firstname],[lastname])
    >> values (?,?)"
    >> cmd.execute lngRecs,array(request.form("firstname"), _
    >> request.form("lastname"))
    >
    > Huh? What's the difference?
    >
    > In either case, the user can still put something like this into
    > firstname:
    >
    > 'foo','bar'); TRUNCATE TABLE thetable; --
    >
    I don't think that's quite right Aaron. We are now passing parameters, not
    concatenating. The truncate statement would appear inside the values block
    and would cause at least a syntax error - although, I suppose there's a
    chance that the string would get inserted into the column if it's not a
    numeric column.

    I just tried it - the string does get inserted as-is. See for yourself:

    CREATE TABLE dbo.InjectTest
    (
    FirstName varchar(80) NULL,
    LastName varchar(80) NULL
    )
    go
    insert injecttest
    select 'foo','bar'
    union all
    select 'foo1','bar1'
    union all
    select 'foo2','bar2'


    <%
    option explicit
    dim cn, sSQL,cmd, rs

    set cn=server.CreateObject("adodb.connection")

    sSQL="insert into InjectTest values(?,?)"
    cn.open "provider=sqloledb;data source=censored;" & _
    "user id = censored; password=censored;initial catalog=test"

    set cmd=Server.CreateObject("ADODB.Command")
    cmd.CommandText=sSQL
    Set cmd.ActiveConnection = cn
    cmd.Execute , _
    array("'foo','bar'); TRUNCATE TABLE thetable; --","any"), _
    adCmdText + adExecuteNoRecords
    set rs=server.CreateObject("adodb.recordset")
    set rs = cn.Execute("select * from injecttest",,adCmdText)
    Response.Write rs.getstring(,," | ","<BR>")
    rs.Close
    set rs=nothing
    cn.close
    set cn=nothing
    %>

    Bob


    Bob Barrows Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139