Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: gtubb
  • Content: Threads
  • Order by date
  1. gtubb

    Passing a string URL into javascript

    Hi folks I can handle ASP, but I'm a bit of a novice at Javascript. I have a working javascript slide show function. I want to pass a URL from a hidden form field into the script like so: Pic[1] = '<%=request.form("picture2")%>' This puts the URL of the picture into the script, but strips...
  2. gtubb

    jmail returns a comma instead of contents of memo field

    Hi folks I'm new to jmail - I can get it to return the contents of fields from an access database - but not from a memo field. All it returns is a comma. I've Googled for ideas, but got nowhere. Any ideas? Thanks Gerard
  3. gtubb

    why won't form send hidden value?

    Hi folks I have a simple form with a hidden value: <form method="POST" enctype="multipart/form-data" action="edit_comment.asp" name=submitform> input type=hidden name="email" value="wrg"> input type=SUBMIT name="submit" value="Edit the message"> But for some reason the value is not being...
  4. gtubb

    script hanging with ID number

    Hi The following script works fine if the variable passed the the URL is text. If I make the variable a number (ID) then the script hangs with no error message. I've tried removing the & &quot;'&quot; but it makes no difference. Can anyone help? sql_fields = &quot;SELECT * FROM categories...
  5. gtubb

    unterminated string constant

    Hi I have constructed the following SQL statement using the graphical query tool in Access (the query works fine). sql_fields =&quot;SELECT categories.category_name AS categories_category_name, Count(items.category_name) AS items_category_name FROM items INNER JOIN categories ON...
  6. gtubb

    what's wrong with this script - trying to call a function

    Hi folks The following script copies a file to a backup folder, and dates it by renaming it 'backup30012004' - the digits are today's date, minus the '/'s It works until I try to call the function checkdup(filename) which is supposed to add an extra digit on the end of the name of the backed...
  7. gtubb

    how can make an INSERT INTO statement see a variable?

    Hi Can anyone tell me how I can get a table name passed in the URL (page.asp?=blah)to work with the INSERT INTO code below? My attempts with dim strTblename strTblename = Request.Querystring(&quot;Table&quot;) SQL = &quot;INSERT INTO strTblename just returns the error message &quot;Could not...
  8. gtubb

    Can you adapt this script so user can create their own table &amp; name?

    Hi I need to create a form that will allow users to add new tables to my Access database. I can create a table with the script below - but can anyone tell me how to wrap it in a form so the user can choose the name of the table (the fields will be the same in each table) Many thanks Gerard...
  9. gtubb

    I've passed a table in the URL. How do I retrieve its fields?

    Hi I have created a page which lists the tables in a database but hides the system tables. The table names in the list are links which pass the table name to the page 'details.asp' with the following code: <a href=&quot;details.asp?Table=<% = RS(&quot;TABLE_NAME&quot;) %>&quot;><% =...

Part and Inventory Search

Back
Top