Jump to content

Mr.Jay

Members
  • Posts

    55
  • Joined

  • Last visited

Everything posted by Mr.Jay

  1. Just found this linkhttp://www.4guysfromrolla.com/webtech/062899-1.shtmlIt was great reading it, i hope you find it as useful as i did
  2. replace the ' with "or replace the quote with two quotes
  3. how about get rows ?http://www.asp101.com/samples/viewasp.asp?...=db_getrows.asp
  4. Hey rubyknight,I was hired to develop a e-commerce site for http://dibor.co.uk last year.Although i had a few glitches at first as it was my first big e-commerce job, ASP actually handled everything better than i expected.I used stored procedures to block out attempts to run sql injections and to help speed up big querys.As far as the speed on a 56k modem i couldnt tell you, but what i can tell you is that the customers of dibor.co.uk are mainly mature older adults who live in rural areas where i would be surprised if many of them had broadband. To my knowledge there has been no complaints recieved about speed.So as for your question, is asp, sql sufficient for e-commerce ? my answer is Yes !
  5. http://www.aspin.com/func/content?tree=asp...&id=4410410is a good little script
  6. Mr.Jay

    HOW it works

    most search engines dont index .asp pages
  7. Put Session.LCID = 1033 at the top of the header page.this will make all dates into the correct format for you.'----1033 = USA2057 = British
  8. Mr.Jay

    Contests

    im interested !
  9. Mr.Jay

    Upgrading from PWS

    Buy a windows hosting package.Or if you would like to run it on your own computer then use IIS
  10. Ditch the linux server, get a windows based server and you will be good !
  11. Mr.Jay

    ASP Email system

    have you tried sending it from a different email address ? looks like you are trying to send and recieve an email from the same address.
  12. Mr.Jay

    Alternating Images

    link i gave is for classic
  13. Mr.Jay

    ASP.NET

    Minimum: 128 (MB)Recommended:256 MBenough said lol
  14. Mr.Jay

    ASP.NET

    128MB Of Ram ?Im surprised you can actually run XP :S
  15. Mr.Jay

    Alternating Images

    http://www.w3schools.com/asp/asp_adrotator.asp
  16. Mr.Jay

    problem with my iis

    unistall iis.reinstall it.then goto http://localhost and it should display all the default pages....
  17. ok, simply insert there ip with the other information you gather from the form.then add a check in the script before you insert a new row to check if there ip is already there, if it is then stop and redirect them, else continue inserting new row.hope this helps.
  18. are you using a database at all ?
  19. Mr.Jay

    Page redirect?

    Q1: yes you can redirect to any page you like.Q2: I would suggest you email brinkster and ask them what asp email component they use (if any).when you get a reply post it here and i will help you.
  20. as soon as the session has expiered you need to reset it.i.e session("username") = "joecool2005"
  21. I have just made this function for you, i hope it helps you. <%' start functionfunction checkforfiles(str)' dimension variablesDim f, getfolderDim numfoundDim folder' initialise variablesfolder = strnumfound = 0' set file system objectSet f = Server.CreateObject("Scripting.FileSystemObject")' check if folder exisitsIf f.FolderExists(folder) = true then' get the folderSet getfolder = f.getfolder(folder)' check through all filesFor Each fileItem In getfolder.Files ' files found numfound = 1' move to next fileNext' folder not foundelse ' folder not found numfound = "" ' end checking for folderend if' check resultsif numfound = "" then response.write("folder not found.")elseif numfound = 0 then response.write("no files found.")else response.write("files found.")end if' close the objectsSet getfolder = nothingSet f = nothing' end the functionend function' ###################################' call the functioncheckforfiles("c:\inetpub\wwwroot\test2")%> Let me know if you need it to do anything else. JayT
  22. session.abandonwhich will clear the entire session.or you can just clear individual sessions by making the equal ""i.e session("username") = ""hope this helps !
  23. Mr.Jay

    where..like

    can you please post the sql statment.
  24. would need some code and more info on why it dont work.
  25. have you installed iis ?what version of xp do you run ?
×
×
  • Create New...