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 strongm 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. asptim

    How do I disable user from making any changes on a text file?

    Don't show the file as a link? If you have some users that are supposed to be able to access the file, then show those users the link to the file by setting a cookie or session variable and by first making all users log into your site.. To print the page, the text open a new window and query...
  2. asptim

    Differentiating check boxes and radio buttons

    They should be named differnetly.. Radio buttons are mutually exclusive, so you should have a form element name for the radio buttons and one for the check boxes.. Check for the check boxes by their name.. I'm not a java scripter, so your code doesn't help me much, but you should have something...
  3. asptim

    Query in ASP

    Check out http://www.aspfaq.com/faq/faqShow.asp?fid=16 . There is an excellent article listed / link and I've used it personally and it works great for just such a project.. Tim
  4. asptim

    Modifying Rows in a DB

    Make sure you are using the correct type of cursor and lock within your recordset! That should help.> Actually I think there are about 4 methods of doing so in ADO, but in ASP only 2 really count.. Basically, you are using ADO to lock the database until your update is complete.. Like the other...
  5. asptim

    [b]How do I keep ppl from downloading files through their browser[/b]

    Also, if your using Access you can password protect it with a user name and password.. Then even if they did somehow guess your database name and path (which is so highly unlikely that unless you have such confidential data that the CIA is after it) they would have to have a user name and...
  6. asptim

    Need to check for valid email in VB script ASP

    Here is a little server side script that works great.. Tim 'All error checking happens on this script, but if it's wrong, we redirect 'the user to a script called "formError.asp" and we pass along the error 'type by appending to the query string what the error was.. ' ' '-- Check...
  7. asptim

    ADO AddNew not working

    Let's see the code? Only way to tell.. Usually, but not always it's one of the two in my experience.. Database fields are not the same name as the fields in your code.. So you've mispelled something.. Check that very good.. Next insure you have the correct database, table name, etc..and are...
  8. asptim

    How do I upload a file using VBScript and ASP?

    ASP doesn't come with an object that will work for uploading image files. You'll need a third party component. Check out www.serverobjects.com and see if they have something for you.. Then you just use the scripting language of your choice to interact with the third party component to upload the...

Part and Inventory Search

Back
Top