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 biv343 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: Krus1972
  • Content: Threads
  • Order by date
  1. Krus1972

    Rewrite Rule for .htaccess Help

    My website is located at www.freetv.info. When loading the root domain, freetv.info, the website redirects to the url: https://freetv.info/index.php/Main_Page I would appreciate it if someone could help me with modifying my existing .htaccess file and/or writing a simple rewrite rule that will...
  2. Krus1972

    msxml3.dll error '80072f7d' - An error occurred in the secure Channel support

    I am receiving the following error when using the code below. This code worked fine for many years up until a short while ago. Does anyone have a fix for this? msxml3.dll error '80072f7d' An error occurred in the secure Channel support sURL = "https://mywebaddress.com" Set oXMLHttp =...
  3. Krus1972

    Pop-up Blocker Detecter

    I am using the following code to open brand new browser windows when our users use our website. I would like to integrate a popup blocker detector within the below code. If the users' pop-up blocker is enabled on our website, the below code cannot open the new browser sessions. If this is the...
  4. Krus1972

    Web.Config URL Rewrite Question

    I am using the following rule in my web.config file and I am having a few issues. I hope someone can help: <rewrite> <rules> <rule name="Shopping"> <match url="^([_0-9a-z-]+)" /> <action type="Rewrite" url="?thesearch={R:1}" /> </rule>...
  5. Krus1972

    Special Character Filter Function Problem

    I have the following function called within a large PHP script. All this function does, is it checks to see if any special character(s) have been submitted in a form. If a special character has been submitted, than an error message is sent to the user to fix their form entry. Right now, this...
  6. Krus1972

    Syntax Error - Confused

    I am using the following code to create tables within a MySQL database: // Connect to the database mysql_connect("$mysql_host","$mysql_username","$mysql_passwd") or die (mysql_error()); mysql_select_db("$mysql_dbase") or die (mysql_error()); // Create the tables mysql_query("CREATE TABLE...
  7. Krus1972

    How do You Terminate a Javascript Process

    Hello, I am using the following code to provide endless scrolling of content on my website. The code works fine and I have no problems with any of it with the exception of one minor thing. When I have no more results to display, the endless scrolling Javascript continues to activate and tries...
  8. Krus1972

    URL Rewrite Rules in Web.config

    Hello, We own the website http://popularauctions.com. Our standard url for searching is popularauctions.com?thesearch=keywords+here I was told that you could set up some simple rules in the web.config file so that the search URLs entered into the browser could be entered in this format...
  9. Krus1972

    Centering Content Within a Fixed Navigation Menu

    I have created a fixed navigation bar that remains at the top of the screen when the user scrolls through content on a webpage. The navigation bar is very similar to what LinkedIn uses and very similar to what Facebook uses at the top of the screen. You can see it here...
  10. Krus1972

    Determine the Width and Height of an External Image

    Does anyone know if there is a way, in classic ASP, to determine the height and width of an external image, that is not located on the server, and store these values in seperate classic ASP variables? For example, I would like to determine the height and width of the following image without...
  11. Krus1972

    On-Click Form Input Box Scrolling

    I have a input form box at the very top of my webpage that is used solely for displaying text for reference to the visitor. This input box is used because the look and feel of a form input box fits the look and feel of the webpage. I do NOT want to use it as an actual form entry. The real form...
  12. Krus1972

    Specifying Which Option Tag is Selected Within a Drop-Down Box

    If i have the following HTML code for a standard drop-down box: <form name= "test" action="/default.asp" method="GET"> <select name="location"> <option value="abilene">Abilene, TX</option> <option selected value="akron-canton">Akron / Canton</option> <option...
  13. Krus1972

    Geolocate and Form Auto-Submit

    I am trying to retrieve the visitor's coordinates using the standard HTML5 Geolocation API using Javascript. The problem is, I need to get the latitude & longitude variables into a server-side variable. The only way to accomplish this is to first, retrieve the coordinates and then place them...
  14. Krus1972

    Javascript Variable to Server-Side (Classic ASP) Variable

    Does anyone know if it is possible to pass a Javascript variable into a classic ASP variable (i.e. pass it into a server-side variable)? It is easy to pass a classic ASP variable into a Javascript variable, but, I was wondering if anyone knows how to do it the other way around? Thanks.
  15. Krus1972

    URLencode and Submit a form

    Hello, I have the following JavaScript code. The purpose of the code is to check the content of a search form to insure that special characters are not being submitted. If there is an attempt to submit special characters, a warning message appears and the script will not submit the form. If...
  16. Krus1972

    Creating a Gradient Using CSS

    Hello, I am trying to create the following gradient effect, using CSS, so that it appears in Internet explorer version 10 and version 11 just as it does in the following image: http://product.info/test.htm I am using the following CSS and HTML code. This code works well and the gradient...
  17. Krus1972

    Web.Config File

    I am currently using Windows Server 2008 R2 with Parallels Plesk Version 11.5.30. The server is currently running ASP.NET 4.0.30319.18408. My website uses ASP classic. I am trying to create a web.config file to block IP addresses. When I place the following web.config file in the root...
  18. Krus1972

    Hover then Load a Page Script

    If you hover over the five stars that are located directly under the words "by Apple" at the following page, you will see a small page that shows review ratings: http://www.amazon.com/Apple-Space-Generation-NEWEST-MODEL/dp/B0097BEE9Q/ref=sr_1_1?ie=UTF8&qid=1393467515&sr=8-1&keywords=ipod I...
  19. Krus1972

    Web.Config File For Subdomain Wildcard

    Hello, If any subdomain (i.e. xxx.mydomain.com) is used, I would like my default page at mydomain.com to load. I was told that I would have to create a wildcard script inside the web.config file and place it in the root directory of my website. Is this really possible? If so, could someone...
  20. Krus1972

    Changing The Referer Header

    Hello, Within my website, I have a link that opens another page. This other page is a simple redirect page. It redirects the user to yet another page and this other page can be different depending on the user's personal preferences that are set in the very first page. The problem is by the...

Part and Inventory Search

Back
Top