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

    DSN connection

    . . . Dim data As OleDbConnection data = New OleDbConnection( "DSN=database" ) data.Open() . . . Why i get an error message when i'm trying to connect a database with DSN name?? The error message says that i don't specify provider (sqlolebd)...
  2. zakd

    Dim FSO Set FSO = Server.CreateObj

    Dim FSO Set FSO = Server.CreateObject ("Scripting.FileSystemObject") Dim itemName, itemPath itemName = "photo.gif" itemPath = Server.MapPath("Photos") & "\" & itemName Dim itemFile Set itemFile = FSO.GetFile (itemPath) itemFile.Delete Can anyone tells me...
  3. zakd

    Deleting Files

    How do i delete files from asp code? strfile = Server.MapPath("Photos") & "/" & "photo.gif" Dim fso Set fso = CreateObject("Scripting.FileSystemObject") fso.DeleteFile (strfile) I use this coce and it doesn't works, Please Help Me
  4. zakd

    ASP - SQL File Upload Question

    I have use a lot of times .dll libraries with asp to upload files into web server directory, but this in my own server that i could put that .dll file in the system what happens with another servers????. My question is if there is any way to upload an image or a file into SQL server database...
  5. zakd

    IIS Help

    How do i make my access DB writable? I always take back the message that the database is read only when i am trying to write via ASP code.
  6. zakd

    IIS Help

    I was working with IIS 5 with Windows 2000 and everything was ok.Now i have this problem with Windows XP when i try to write in access database "Cannot update. Database or object is read-only."
  7. zakd

    Sessions???

    When users close a current session and start another with another user name (ID) then sometimes my application remember the old login and sometimes the new one. I think that it's something about client's browser memory or cookies from global.asa. Can you give me a reason or a solution? Thanks
  8. zakd

    Unix & ASP ?

    Does anyone knows a way to run ASP via Unix Server ? Thanks
  9. zakd

    How can i redirect ?

    I want to know how can i redirect inside php code. For example in ASP is: Response.Redirect "page1.asp?Id=34" I want to do the same thing in php code. Thanks
  10. zakd

    How to freeze text size?

    I want to freeze text size. I meen that i don't want vititors change the font size from internet explorer. Is something abous css?
  11. zakd

    How to freeze text sizes ??

    Does anyone knows how to freeze text sizes? I meen that i don't want visitors (of my site), change font size from internet explorer. Is something about CSS styles?

Part and Inventory Search

Back
Top