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!

Recent content by berendsen

  1. berendsen

    File Upload Directory Listing

    <% Dim strPath 'Path of directory to show Dim objFSO Dim objFolder Dim objItem strPath=&quot;./files&quot; Set objFSO = Server.CreateObject(&quot;Scripting.FileSystemObject&quot;) Set objFolder = objFSO.GetFolder(Server.MapPath(strPath)) response.write &quot;<TABLE>&quot; &_...
  2. berendsen

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

    mmmmm, what if 2 users choose the same table name????
  3. berendsen

    xml file iteration problems

    [I'm not a XML expert] To me the structure of your XML is the source of trouble. I've made some changes; see if that's better... <?xml version=&quot;1.0&quot;?> <BOOK> <PAGE id=&quot;1&quot;> <LANGUAGE id=&quot;17&quot; name=&quot;Eng&quot;> <NAME>name 1 Eng</NAME> </LANGUAGE>...
  4. berendsen

    Problem filtering joined recordset

    This will show all combinations of names and photo's: [that is basically your SQL-statement] Select * FROM link l JOIN photos p on l.id = p.id JOIN names n on l.name_id = n.name_id This will show all photo's for 1 name (with name_id = 1): Select * FROM link l JOIN photos p on l.id = p.id...

Part and Inventory Search

Back
Top