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 gkittelson 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. AlpineKJB

    Anomalie with session variables

    PageA: Comment = session.contents.item(&quot;Comment&quot;) %> <form name=&quot;myform&quot; action=&quot;PageB&quot; <TEXTAREA name=&quot;Comment&quot;><%=Comment%></TEXTAREA> PageB: session.contents.item(&quot;Comment&quot;) = request.form(&quot;Comment&quot;) The user enters a comment...
  2. AlpineKJB

    Would you mind explaining this...

    It has to do with the difference between variables and literals. You would have to read a general tutorial about variables and how they work. job=&quot;455&quot; a = &quot;job&quot; b = job One is a string assignment and the other is a variable assignment. In the above, the variable...
  3. AlpineKJB

    Would you mind explaining this...

    ??? sql = &quot;SELECT * FROM jobs where jobnumber = '&quot; & JOB & &quot;'&quot; ???
  4. AlpineKJB

    passing name-value pairs

    I want to get a name-value from one asp page to another. It must be transparently (ie, cannot be visible in the URL). That rules out querystrings. I can't use session variables as cookies are disabled. I do not want to use a database or flatfile. I do not want to add a HTML form tag to the...
  5. AlpineKJB

    field validation for alphanumerics only

    I am looking to validate a field. It should only include alphanumeric characters (A-Z, a-z, and/or 0-9). Is there a string function in ASP (ver5) that will do this? If not, what is the simplest way to do this with regular expressions?
  6. AlpineKJB

    netscape 4 problem

    I don't know if this will help or not, and you may have already tried it, but maybe try adding a name attribute to the division and using the division name in the reference. I know netscape really starts chocking when working with division. All kinds of anomalies start showing up. An...
  7. AlpineKJB

    Validating Checkboxes

    I am trying to validate a checkbox (ie4). But I have ran into an anomaly with checkboxes. The javascript code below always returns &quot;on&quot; . Even if I UNcheck the box. Can someone help? -Ken <HTML> <HEAD> <SCRIPT> function myform_onsubmit() { var str; str =...
  8. AlpineKJB

    input in IE

    Addendum to my question above: In one browser, the box extends to the middle of the div. In the other, it extends well past the middle of the div. Both browsers are IE5.x but slightly different release as in 5.0029.00etc... <div sytle=&quot;position:absolute&quot; width=200> <form> <input...
  9. AlpineKJB

    input in IE

    I have a form with an input type=text. I have two different computers... one with IE5.002xxxx The other with IE5.0000x The textbox is a different length on the two machines? Does anyone know what the problem can be here? Thanks. KJB
  10. AlpineKJB

    How to password protect a PC

    I want to protect my PC with a password. I am running Win98 but understand that the Win98 passwords can be worked around. I also remember something about setting a password at boot time. I quess my question is: what is the best way to prevent access to my computer using passwords? (ie, if one...
  11. AlpineKJB

    Win98 login password

    Addendum to my post above: When I go to the control panel and select the password icon, the menu I get has only one tab (User Profiles). No other tabs or functionality that I can find to manipulate the password logins. -KJB
  12. AlpineKJB

    Win98 login password

    I have a login screen that pops up whenever I turn on my Win98 computer. I can enter a password, and everything works fine. However, the password is of little use as ANYONE can click the cancel button (on the password dialog)and my computer logs them in and gives full access to my computer. How...
  13. AlpineKJB

    writing to layers

    Whaaahhhhhh! !( Think I will sleep on this one for awhile. Thanks for everyones help here. -KJB
  14. AlpineKJB

    writing to layers

    Well, still no luck... :( (sniffle, sniffle...)
  15. AlpineKJB

    writing to layers

    ok, thanks. Will give the div a try. I sent ya email. Please disregard. Thanks. -KJB
  16. AlpineKJB

    writing to layers

    Still no luck... I tried both: <layer style=&quot;position:absolute; top:30;&quot;> and then <layer top=30>
  17. AlpineKJB

    writing to layers

    Bangers, Which of the following? <layer style=&quot;position:absolute; top:10; etc... or just <layer top:10 left:50>

Part and Inventory Search

Back
Top