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

    Javascript Confirm Problem

    I have a simple javascript confirm box that says "Are you sure you want to continue? When I select no it submits anyway instead of letting the user stay there. Help...
  2. jruiseco

    Clear input box after clearing alert message

    I have a file input box that gets validated by javascript. I am testing the extension of the file to determine if it is a pdf. If not an alert box should be thrown. After the alert box is thrown and the user clicks OK I want the input field to clear and the bad value removed. Here is what I...
  3. jruiseco

    Wildcards with IIS / Virtual Domains / Host Headers?

    Is there a way to make wildcard entries work with IIS 5 and host headers? Since a website only responds to the inputted host header names it has in IIS, any non listed host name will not resolve. Any experts on this?
  4. jruiseco

    DNS Config Problem...

    I setup Windows DNS several days ago and my domains are resolving fine. When I go to www.dnssstuff.com and do a lookup on a domain I get the following message: WARNING: Your SOA (Start of Authority) record states that your master (primary) name server is: 65.245.134.64.. However, that server is...
  5. jruiseco

    Sql Server - How do I change the user mode?

    I just applied service pack 2 to my Sql Server 2000 and now am in single user mode. How do I change back to multi-user mode?
  6. jruiseco

    this.form.submit() not working with Navigator

    I am posting to a page that does a bunch of processing and at the end submits automatically with the following: <script language=&quot;javascript&quot;>window.document.AuthForm.submit()</script> This script does not work in Mozilla, build 2002053012, however. Is there anything special I need...
  7. jruiseco

    How do I do determine which button is selected?

    I have a form that enables something to be deleted or something to be updated. I am inserting values dynamically based upon which submit button is selected. I need to know how to say: &quot;If this button was clicked...&quot; This is what I have but it doesn't work... if...
  8. jruiseco

    How do I turn off &quot;Break apart messages beyond n bytes&quot;

    How do I turn off &quot;Break apart messages beyond n bytes&quot;? I am running Exchange 2000. Somehow the feature that &quot;breaks up attachments over a certain size&quot; has been enabled and now recipients cannot open Excel files, etc. Where is this in Exchange 2K? I cannot find it to...
  9. jruiseco

    Sql Query Insert Problem

    I am importing an Access table into a SQL Server 2000 table. I am importing using a query out of one db and into the other using ColdFusion. Here's my problem... Table A (Access) has the data with an id field (primary key). When I import into Table B (SQL Server) the insert does not go into...
  10. jruiseco

    No idea how to do this...

    I have a form that has dynamic select boxes being pulled from a query. I want to append the action=&quot;&quot; URL based upon the value of the option the user selects in the drop down box. I don't even know where to begin on this. I also want to have the script submit when the drop down box...
  11. jruiseco

    Proper Secure Certificate Usage

    I have a secure certificate for my website. I have the certificate up and running in my ecommerce application at my www.domain.com. I am developing a new version of my ecommerce site and want to use the certificate in my development on the same domain but with a different subdomain...
  12. jruiseco

    How do you set a db wide username/password in SQL 2000?

    How do you set up a general Username / Password in SQL 2000? FYI, I am using the Enterprise Manager and have the database already set up.
  13. jruiseco

    Multiple functions with &quot;onclick&quot;?

    How do I call two functions from one onclick within input submit code? <input type=&quot;submit&quot; name=&quot;Submit&quot; value=&quot;Continue With Order&quot; onClick=&quot;return checkstate()&quot;&quot;return ShipAlert()&quot;>
  14. jruiseco

    Currency Problem &amp; ASP

    I am running an eCommerce application for an American client on a box located in the UK. The site is totally written in ASP (written by someone else). The problem I'm having is that the box currency settings are all for English Pounds. This is not good for my American client. Is there some ASP...
  15. jruiseco

    Change Administrator Password Remotely

    I need to change the administrator password on my box and have no way to send a CTRL-ALT-DELETE to the box because I'm using terminal services. Anyone know how to change password another way?
  16. jruiseco

    How do I write this SQL statement?

    I have two tables (see below). Table 'csv' has the data I want to put into Table 'item'. How do I write the SQL statement to update item.Manufac with the data in csv.Manufac? I've started out with something like this: update item set item.manufac = csv.Manufac where item.ItemNo = csv.itemNo...
  17. jruiseco

    Get cursor to show up in input box on pageload

    How do I make the cursor blink in a particular text input box when the page loads? An example of this is when you pull up the login page of Yahoo Mail, http://mail.yahoo.com/, the cursor is already in the login box and the user can just start typing instead of having to place the cursor then type.
  18. jruiseco

    Best way to copy SQL database?

    I need to copy a SQL database from a server and FTP to get it. Is there a way to copy the db in 1 neat file like Access? What is the easiest way to get a SQL db copy? Thanks...
  19. jruiseco

    How do I convert this javascript code into a UserDefinedFunction?

    The javascript below grabs the user's date (client date) from their computer and returns the value. I want to turn this javascript (and a time javascript) into a user defined function. I spent a lot of time on this and couldn't figure it out. <!--- Start Script ---> <script> function...
  20. jruiseco

    I've not found anyone who can figure this out...

    I have a basic form that collects user mailing address info. I am using a dropdown box for state selection. How do I setup validation so that when a user does not select a state, they get an error on submit? Right now it lets the user roll on by without selecting a state. Thanks...! <!---...

Part and Inventory Search

Back
Top