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

  • Users: mcode12
  • Content: Threads
  • Order by date
  1. mcode12

    database connection - private folder.

    I've uploaded a MS access db to a client's private folder on the net. I've set the connection string... I was able to get this from another script. when I run a test script I can connect to an existing microsoft access database that is already there, but I canNOT seem to connect to the ms...
  2. mcode12

    CreateUserWizard

    In the web.config i have changed the settings to minRequiredNonalphanumericCharacters="0" minRequiredPasswordLength="7" How can I change the error message below to something a bit easier to read. Password length minimum: 7. Non-alphanumeric characters required: 0. thanks.
  3. mcode12

    Meta description " issue

    In my meta description sometime the " is being insert from the database. This is causing problem as it's truncating the meta too early. Any ideas how to stop this?
  4. mcode12

    Email BCC

    How would I do a BCC for the code below? <?php $Name = $_REQUEST['Name'] ; $Email = $_REQUEST['Email'] ; $Query = $_REQUEST['Query'] ; $flag="OK"; // This is the flag and we set it to OK $msg=""; // Initializing the message to hold the error messages if(strlen($Name) < 5){ //...
  5. mcode12

    Remote Access to MS Access

    Is it possible to access a MS Access database from a remote server with ASP? Thanks.
  6. mcode12

    ASP.NET 301

    is it possible to redirect from www.yoursite.com/myfolder/default.aspx to www.yoursite.com/myfolder/ and have the latter appear in the address bar? The reason for this is that search engines treat the two as two different pages. Anyone know the answer?
  7. mcode12

    HTTP_Referer Cookie Google Tracking

    Hello, I am trying to track the keywords that people arrive at my page through Google. I'm using the ServerVariable HTTP_Referer from which I can extract the keywords. The reason I am doing this is to use PayPal's custom field to insert the keywords, so I'll know what someone has typed into...
  8. mcode12

    Tracking

    I'd like to track the keywords that a searcher has used to arrive at my site and then made a payment through PayPal. I'd like to track this with PayPal's custom field. For instance 'Get site referrer sSite=Request.QueryString("HTTP_REFERRER") 'if referrer is google then create a cookie If...
  9. mcode12

    localhost smtp asp

    I run the script below on my XP machine in the local host and nothing happens. No error messages and no emails sent to my email sch = "http://schemas.microsoft.com/cdo/configuration/" Set cdoConfig = CreateObject("CDO.Configuration") With cdoConfig.Fields .Item(sch &...
  10. mcode12

    Textbox and Textarea issues

    I have a signup form and I want to be careful with information that is entered so I'm thinking that I should take these steps. 1. retrieve the form elements and set to variables, then replace the apostrophe in variables with two single apostrophes. 2. Next check for any sql injection...
  11. mcode12

    Inserting a Date into MS Access

    I've just noticed that when I insert a date and time into MS Access the date is 08/09/2007 when it should be 09/08/2007 This is strange as it's on a UK server and when i do response.write now() i get 09/08/2007 which is correct. Anyone got any ideas why this has happened?
  12. mcode12

    flooding textfields/textareas.

    Hello, anyone know where's there any articles on how to stop people flooding your database with records through an textfield or textarea? thanks.

Part and Inventory Search

Back
Top