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 bkrike 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: cawi17
  • Content: Threads
  • Order by date
  1. cawi17

    display folders and subfolders...

    I'm trying to display my folders and subfolders of a parent folder in format exactly like : [Parent Folder 1 [SubFolder1, [Folder2], [Folder3], [Folder4] ], [SubFolder2, [Folder2], [Folder3], [Folder4] ], ] but it didn't work. The part which i'm unable to...
  2. cawi17

    Problem when creating folder

    I'm trying to create folder using ASP script below... but when opening the page..it loads for 'quite a time'.... almost like it hangs... but noe folder was created... What is the problem...? <% Dim myFSO Set myFSO = Server.CreateObject("Scripting.FileSystemObject")...
  3. cawi17

    audio streaming...

    I was thinking of doing a streaming system, (juz like launchcast/yahoo.com) using asp, where users can play the song they want, and then continue to play other songs, after the previous song had finished...... Songs will be on mp3's with MS access database. Do you guyz have any ideas or...
  4. cawi17

    Problem in looping with rs....

    Hi guyz... I'm back with another problem.... I'm using the codes to display all record from a table... <% Dim cn Dim rs Dim sqlstring Dim theSubject Dim theContent Dim theCategory Set cn = Server.CreateObject("ADODB.Connection") Set rs = Server.CreateObject("ADODB.RecordSet") dataConn=...
  5. cawi17

    Wierd Record Set Problem...

    Below are the codes for my .asp page.... It's kindda weird... I've tried to display multiple recordsets values usin rs("") on different places on a page... but it dispaly only 1 of the rs("") The rs("Subject") field and rs("Content") field are Memo Data type.... As you can see, I'd tried to...
  6. cawi17

    Updating using rs.Update

    I'm trying to update a record by using rs.Update.. Though, it produces error Error Type : ADODB.Recordset (0x800A0CB3) Current Recordset does not support updating. This may be a limitation of the provider, or of the selected locktype. ..... Set cn = Server.CreateObject("ADODB.Connection")...
  7. cawi17

    Passing value of textbox created dynamically, into an array

    Hi... I got 2 asp pages... I page is where I created a form dynamically using... *********************************************************** . . . dataConn= "Driver={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("cd2buy.mdb") cn.open dataConn Set rs = cn.Execute("SELECT * FROM CART...

Part and Inventory Search

Back
Top