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 SkipVought 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
  • Order by date
  1. zakd

    DSN connection

    I've done the connection with connection string. I read about ASP.NET & DSN connection in a book that's why i suprised when i saw the results! Sometimes books make mistakes.. Anyway thanks for your reply.
  2. 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)...
  3. 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...
  4. 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
  5. 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...
  6. 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.
  7. 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."
  8. zakd

    Sessions???

    Sessions works fine! Finally the problem is that sometimes internet explorer does not request an execution of asp code from server, but restores the previous executions results (html) from clien's machine. When i clear internet explorer history, everything works fine.Aslo Netscape Navigator...
  9. zakd

    Sessions???

    I have allready put Session.Abandon at the first line of login.asp, so if server or client remember a session,all sessions are closing and when a user doing loggin start new session, but the problem exist!!!I think that the solution is to find a way to delete the cookie which global.asa...
  10. 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
  11. zakd

    Saving Carriage Return from TextArea in ASP

    You may put html tag <br> when line breaks.You can ignore line break using VB String Constant vbCrLf. You can use this while recording in database but in this case you enter much more chars (<br>) in your db when line breaks. Keep clean your db by using this code while printing on screen...
  12. zakd

    Unix &amp; ASP ?

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

    How can i redirect ?

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

    How do you call a Perl Script from ASP?

    If you are using IIS Server you can't run Perl code.
  15. zakd

    Browser Compatible and Check

    Dim objBrowser Dim colBrowser Set objBrowser = Server.CreateObject(MSWC.BrowserType&quot;) 'Get Browser's Info colBrowser = objBrowser(&quot;xxxxx&quot;) Response.Write colBrowser xxxxx get's : version 'for browser's version majover 'for browser's majover version minorver 'for browser's...
  16. zakd

    Adding variable to sql statement

    ---Recordset.asp--- Dim strFamily strFamily = Request.Form (&quot;family&quot;) SQL = &quot;SELECT * FROM Table WHERE (Family =&quot; & strFamily & &quot;)&quot;
  17. zakd

    database with a html interface

    That was good idea about HTA app but a better solution is to load Windows 2000 NT on your system, build IIS server and work with Local Intranet
  18. 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?
  19. zakd

    A ¦ B ¦ C ¦ D ¦ E ¦ F ¦ G ¦ H ¦ etc..... Navigate a Recordset?

    You may need to use handcode. Try to use &quot;Left&quot; it's a VBsript String Function. It returns how characters you want from left side of your string(in this case you database names) Syntax Left(string, length) so you can compare your Letter with your Name (in the db)
  20. zakd

    different types of errors while submitting

    I think that the problem is the web browser version. The same problem happened to meet when i made an application using ASP 3 and VBsript.All users they had internet explorer 4 or lower had the same problem with errors but the data had been entered in the access bd. I haven't find the solution...

Part and Inventory Search

Back
Top