Jump to content

Mr.Jay

Members
  • Posts

    55
  • Joined

  • Last visited

Posts posted by Mr.Jay

  1. 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 !

  2. how to install asp.net in my pc..i hav no idea how to download..actualy my sys has 128 MB of RAM so how much bandwidth need to install this software??asp.net
    128MB Of Ram ?Im surprised you can actually run XP :S
  3. 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.

  4. 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.

  5. 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

  6. Hello ^^here is a picture of my databasedb.JPG ********Code START**********<%@ LANGUAGE = vb script:cmdBack()" class="Menu1Title"> Precedente</a></td> </tr> </table></td> <td width="598"><%'if cd_cli = "" thenResponse.Write risposta'else'Response.Write risposta'end if%> </td> </tr></table>aa<br><a href="sheviprova.asp?user_id=<%=oRs("COD_NOTAIO")%>"><%=oRs("PA_NOME")%></a></body></html>********Code END**********In the nome = request.form("txtNome") when i search for "PA" It should show me 2 records but now it only shows me 1 and that is "PATRICK"Any help?:) y doesn't it show the asp code....
    can you please post the sql statment.
×
×
  • Create New...