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 TouchToneTommy 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. joeg99

    Inserting to a join with merge

    Heya, just a curiosity question really, I've been playing with Merge and it rocks but I'm wondering if it can be used to solve a common problem. Often in a relational database you want to insert values into 2 tables at once, a simple example is: DECLARE @Source TABLE( Person VARCHAR(50)...
  2. joeg99

    which version of java a client is using?

    Hi I need to find which version of java a client is running (not just if it is enabled), and if possible wether they are using the microsoft or the sun virtual machine, is this possible from java script?
  3. joeg99

    validation for spaces

    use a regular expression to remove the empty spaces from a string containing the value of the field and compare the length of this to the length of the original string var str; str = document.theFormsName.theFieldsName.value; if (str.replace(/[ ]/g),"").length != str.length) { //the...
  4. joeg99

    run sql from javascript?

    a iframe is a 'inline frame' which means it can be placed anywhere in a page and and have its own position and size etc, a bit like a div but its source is a seperate file from the rest of the window. its visibility can be set to hidden so this can be used to update the contents of the main page...
  5. joeg99

    run sql from javascript?

    the only solution i can think of is to create a iframe with its visibility set to hidden, then place the functions to update the html of the main page in the iframe and update this.
  6. joeg99

    Email Validation

    it's difficult to develope your own: you can buy a cheap component here..(50$) http://www.serverobjects.com/products.htm#aspmx But if you want to do it yourself then you will need to do an nslookup .. use aspexec from www.serverobjects.com to execute a shell.. or use the wsh shell object...

Part and Inventory Search

Back
Top