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. jgales

    comparing dates

    FYI, I also had the same problem. Works like a charm. Thanks Jeff
  2. jgales

    Returning an array from remote script

    I'v got the code to return the array. Thanks for the help. There is one thing I'm still working on. I want to populate the array with data from a recordset. Do I have to retrieve the data from the DB using VBscript or can I use Javascript in my working page?
  3. jgales

    Returning an array from remote script

    Thanks for your reply. Having never used XML before I want to make sure I understand what you are saying. The line document.all("results").innerhtml = xml.responsetext will retrieve the data. At this point what do I need to do to present the data to the user? Can I parse through the...
  4. jgales

    Returning an array from remote script

    I am attempting to return an Array from a remote scripting asp. Write now the code is hard coded with data but my goal will be to load data from a record set and pass the array back to my calling page for display use. My remote page is as follows. <!--#INCLUDE...
  5. jgales

    Help with window.event.srcelement

    I resolved the problem. You can retrieve the string via window.event.srcelement.href
  6. jgales

    Help with window.event.srcelement

    var idiff=0 var s1 = window.event.srcElement; if (s1.href.indexof(&quot;divaimg2&quot;)==0) idiff=721; else { var dstart = s1.indexof(&quot;20&quot;) ddate = s1.substring(dstart,8); ddate2 = ddate.substr(5,2) + &quot;/&quot; + ddate.substr(7,2) + &quot;/&quot; + ddate.substr(1,4)...
  7. jgales

    Help with window.event.srcelement

    I am having a problem using the href text in the window.event.srcelement item. I can pop up the value via an alert command but am unable to use any string functions against the item. jgales
  8. jgales

    Link Onclick event

    I was experimenting with the pageobject but I'm definitely out of my expertise with this particualr item.
  9. jgales

    Link Onclick event

    result2 is the page name which is also the name of the pageobjectdtc.
  10. jgales

    Link Onclick event

    I performed some additional searches and came upon some info regarding the pageobject. It appears based on the forum I read that I can call a server side script from a client side script using this object. Given that this is totally new for I would like to know if this the way to go? If so...
  11. jgales

    Link Onclick event

    Already done that. No result. As far as the If Else mess goes when using a select case statement cases such as 0 to 30 where recognized. It was having a problem with the 'to'. It looks as though the best way to solve this is to obtain the link string and perform my sql string build in a client...
  12. jgales

    Link Onclick event

    No dice...I originally had a case statement which didn't work either. Grasping for straws at this point. Connections and sql execution is pretty basic stuff. I'm getting the feeling that the script is not running at all.
  13. jgales

    Link Onclick event

    After making my post I realized that the window object is not available to me. Now when I designate the script as server side I am unable to connect. Here is my code that I am trying to execute. As you can see my code referencing the window object is commented out and I have defaulted idiff=0 to...
  14. jgales

    Link Onclick event

    I am attempting to utilize the onclick event for a link. When the link is clicked I am executing a vbscript routine to perfom some database updates. As part of the process I am unable to access the server and application objects. When I specify runat='server' I can access those object but then I...

Part and Inventory Search

Back
Top