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 Mike Lewis 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. TickleMeEmo

    command prompt users

    I'd like to pull up who has what IP address. an address to matching a user (computer name). I know the connection exists, for example i can net send a computer name or an IP address. in a perfect world, i would enter an command with an ip and get a computer name or get a list of current ips and...
  2. TickleMeEmo

    command prompt users

    I hunting for a command prompt command that will match my networks users up with their IP address. something like net user, but I could run it on my DHCP server from my work station any ideas? maybe net user is it, but I'm fuddling up the syntax. I'm tried finger too and can't seem to get it to...
  3. TickleMeEmo

    quotations

    While formating my email, i have learned of the all powerfull VbCrLf to create a line break. What I need now is some quotation marks. Is there a VB ampersand#34 that will make quotation marks without messing up my ASP? If I use ampersand#34, it simply prints ampersand#34 in my email (because its...
  4. TickleMeEmo

    pull from a .js doc

    Ok, I copied my .js to my asp page. looks like this <% Dim AspVariable(99) quotes[0]='quote lives here' quotes[1]='quote lives here' and so on Now I want the id from the url <%=request.querystring(&quot;id&quot;)%> How do I get the element from the array that matchs my id? I want that...
  5. TickleMeEmo

    pull from a .js doc

    I need the element back in a ASP variable. Yes, the variable is coming from another page. I want to use ASP to go to the .js doc, grab the element that matchs the id and return it in a ASP variable so I can stick it in my ASP email script.
  6. TickleMeEmo

    pull from a .js doc

    I'm new to ASp, so please bear with me. I want to pull an array from a .js doc. I'm passing the variable in the url string, lets call it &quot;id&quot;. So my url looks like this http://www.mywebsite/index.asp?id=99 Using ASP, i would like to call a file called quote.js and pull that id from...
  7. TickleMeEmo

    Javascript in ASP

    Yep, yet another ASP and Javascript question. Basically want to to assign the value of a Javascript variable to an ASP variable. <% Dim AspVariable AspVariable = &quot; <SCRIPT LANGUAGE=JavaScript><!-- document.write(JavascriptVariable); // --></SCRIPT> &quot; %> I need to do this to send...
  8. TickleMeEmo

    Javascript in ASP

    Actually, what I want to do is make the following javascript variable be sent by my ASP email page The javascript is <SCRIPT LANGUAGE=&quot;JavaScript&quot;> <!-- id = document.location.search.substring(4); var javascript_quote = (quote[id]); // --> </SCRIPT> the javascript variable quote is now...
  9. TickleMeEmo

    Javascript in ASP

    Or ASP in Javascript I have a nifty little Javascript that randomly pulls a quote. The goal is that a user can then send this specific quote to another user's email address. No problem right? I'm getting hung up when I try to stick my Javascript variable in ASP, so my sendmail.asp page can send...

Part and Inventory Search

Back
Top