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: *

  1. spoondyke

    can this be done without an .exe?

    i have been building an auction and have come up against a potential problem. when a sellers auctions comes to an end various procedures are executed. however.....if the site were to be quiet(ie. no visitors) over the days that the auction dies the script to complete the death of auction tasks...
  2. spoondyke

    Dynamic path to database

    thnaks for the help :)
  3. spoondyke

    Dynamic path to database

    is there a way to configure a dynamic path to a database? the reason for wanting to do this is so that when a user installs my program they can set up the path to the db themselves, instead of me forcing the installation to a predifined directory. thanks for any help
  4. spoondyke

    Saving array of records to file?

    thanks for the help :)
  5. spoondyke

    Front Page and ASP: Your Opinion

    im afraid i have to agree with AncientTiger on this one. I've only used frontPage a couple of times and I wasn't very impressed with it. For general page design I would recomend dreamWeaver as it provides very clean HTML and is 500% quicker than writing raw HTML. As for your actual scripting...
  6. spoondyke

    Changing a user password in a Access Database using ASP?

    here are the basics for amending a password, you will obviously have to know the users name to do this, i have presumed it is stored in a cookie : <% ' collect the password from previous page strPassword = trim(request(&quot;your_Password_Field&quot;)) ' collect the user name from your...
  7. spoondyke

    jmail from recordset

    you just need to run through all entries in the database and send the the email each time. if you are sending by user level then you need to check if the pilot is of a certain level and send accordingly. i hope im not being to confusing while not yourRecordSet.eof do strEmail =...
  8. spoondyke

    Stop backspace acting as the Back Button

    this is more client side problem. you can do it like this : add this to a page and every time someone hits back they wont be able to go back as they will be driven forward again. this method also stops the browser back button from functioning correctly so may not be usefull for you. <script...
  9. spoondyke

    Problems

    we really need a bit more information on the other server. do you have control of this server? is it ASP capable? if you have control of the server and it is running ASP the short answer is yes. you would do exactly the same as you do on your own site, but put in an absolute URL passing the...
  10. spoondyke

    Get the servers regional time setting

    I'm not sure if i understand your question correctly. if you want to see the time +1, +2 etc just use: <%=now +(time you want to add%>) you may also be able to set the LCID, so as to show the visitor settings. for eg: <%@ LCID = 2057 %> is the setting for Britain and will also format the...
  11. spoondyke

    Automated Emails

    you can use CDONTS to do this. below is a simple example of sending a single e-mail. however sending bulk e-mails works with the same principle. you can obviously link this in with a form so your .subject and .body lines could be a variable (rather than hard coded string as below) to send...
  12. spoondyke

    Good .asp book &amp; Newbie Question

    A book I would recomend is Beginning Active Server Pages 3.0 by Wrox Press. As for your question you would do something like the following...... sqlString = &quot;SELECT your_field FROM your_table &quot; &_ &quot;WHERE your_field !='&quot; & &quot;&quot; & &quot;'&quot; &_...
  13. spoondyke

    Intranet App Question....

    I presume that you know how to save a file through an ASP page. Once you can do that your 99% of the way. All you need to do now is provide the user with an input box to input the desired path. Now collect the user defined path and use it instead of the static path you may be using. however...
  14. spoondyke

    Data Access Page over the Intranet

    it sounds like you don't have the server set up correctly as if there is an error you should have a virtual address (eg. http://blah/blah/blah.asp/ ), not a directory as you are getting. make sure you have your intranet directory set up in IIS and are accessing it via a virtual address.
  15. spoondyke

    Skip Loop

    as for the problem of not having all records in both tables. All your tables should have keys and foriegn keys to allow for relationships between them. If you don't have any shared keys in these tables you need to make some and then you can do this easily. if you do have them then just do a...
  16. spoondyke

    Saving array of records to file?

    I am having problems saving/opening an array of records to/from a file. For some reason all the data is turning to garbage on the save. Can anyone help me in this area or point me to a good tutorial on this subject? thanks
  17. spoondyke

    Example using Interbase

    Here are the books details Delphi 5 Developers Guide: Sams Publishing ISBN 0-672-31781-8 http://www.samspublishing.com
  18. spoondyke

    Connecting to a virtaul SQL server??

    I am hoping to find out how to connect to a virtual SQL Server so I can build an app that will interact with the database on my webserver. I have been looking everywhere to try and find this out but can't. Any help will be grately appreciated

Part and Inventory Search

Back
Top