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

    javascript for a date check

    I was wondering if someone can help me. Im trying to write some javascript that will help me check the system date versus a set date to determine a true or false value. Basically what I want to happen is when someone clicks on a button I want it to check the system date, and if it is before...
  2. chaddu1256

    javascript if else statement

    <% //to test for null values String va5 = ""; if (request.getAttribute("meterNo").toString().equals("00000000")){ va5 = "&nbsp;"; } else{ va5 = request.getAttribute("meterNo").toString(); } %> This is the statemenet I have at the moment. Basically there is a...
  3. chaddu1256

    best way to set up this wireless network

    Ok im gonna try to explain how these two offices are setup and im looking for suggestions on the best way to set up a wireless network for them. ---------------- ---------------- - Main - - Other - - Office...
  4. chaddu1256

    calling in an asp mail script

    I have a page with a form on it that we are using for businesses to contact us. When someone fills the form out and clicks submit I want it to call in this asp mail script that I wrote to send the form to a specified address. I completely forgot how to call in these scripts, would someone...
  5. chaddu1256

    hitting enter on a login page

    Hello everyone I just had a quick question here. I'm updating this webpage and we want to be able to hit the enter key after entering a username/password. I've done this before by changing the button focus when the page loads but the problem im having now is that there are no buttons used on...
  6. chaddu1256

    having trouble with date validation

    <% java.util.Calendar today = java.util.Calendar.getInstance(); int thisYear = today.get(java.util.Calendar.YEAR); int thisMonth = today.get(java.util.Calendar.MONTH); %> <script language="javascript"> function validate(ccfrm){ var year=<%=thisYear%>; var month=<%=thisMonth%>...
  7. chaddu1256

    cant make button on click open a new window

    Right now I have a button that is linked to an FAQ for our website. Right now when you click on it, it opens up the faq page in the same window. We would like to make it open a new window to display the faq, preferable a popup window. Is there a way to do this? The code I have for the...
  8. chaddu1256

    help on a null statement

    &lt;% //to test for null values String va5 = &quot;&quot;; if (request.getAttribute(&quot;meterNo&quot;).toString().equals(&quot;00000000&quot;)){ va5 = &quot;&amp;nbsp;&quot;; } else{ va5 =...
  9. chaddu1256

    help on a null statement

    &lt;% //to test for null values String va5 = &quot;&quot;; if (request.getAttribute(&quot;meterNo&quot;).toString().equals(&quot;00000000&quot;)){ va5 = &quot;&amp;nbsp;&quot;; } else{ va5 =...
  10. chaddu1256

    changing button focus

    Ok once again thanx alot I got it working now.
  11. chaddu1256

    null statements

    &lt;% //to test for null values String va5 = &quot;&quot;; if (request.getAttribute(&quot;meterNo&quot;).toString().equals(&quot;00000000&quot;)){ va5 = &quot;&amp;nbsp;&quot;; } else{ va5 = request.getAttribute(&quot;meterNo&quot;).toString(); } %&gt...
  12. chaddu1256

    changing button focus

    Ok here we go: For the login button I have &lt;input type=&quot;button&quot; value=&quot;Login&quot; name=&quot;Login&quot; onClick=&quot;set()&quot;&gt; For Password hint &lt;input type=&quot;button&quot; value=&quot;Password Hint&quot; name=&quot;PassHint&quot; style=&quot;width:110px&quot...
  13. chaddu1256

    changing button focus

    Right now I have a webpage that servers as a login page for our system. It has a Username and Password text box, then 5 buttons, a login, password hint, password recovery, get started, and FAQ. When you enter the URL for the page and it first comes up there is a cursor in the Username textbox...
  14. chaddu1256

    easy question about form object text boxes

    Thanx for the info you two. I got what I need now, so I appreciate it alot.
  15. chaddu1256

    easy question about form object text boxes

    I have a text field on my page and I was wondering how you go about changing the size of the field. Everytime I insert a text field they are all teh same size. The code for the text field right now is &lt;input type=&quot;text&quot; name=&quot;cvv2&quot; value=&quot;&quot;&gt; Any help...
  16. chaddu1256

    cant get this to work

    i figured it out va1 = decimalFormat.format(Double.parseDouble(utilWrap1.getExtension8())); it works now so im gtg
  17. chaddu1256

    cant get this to work

    java.text.DecimalFormat decimalFormat = new java.text.DecimalFormat(&quot;0.0000&quot;); this is at the top of the page and the code which im trying to use this is as follows <% //to test for null values String va1 = &quot;&quot;; if...
  18. chaddu1256

    help with javascript(cant get this to work)

    java.text.DecimalFormat decimalFormat = new java.text.DecimalFormat(&quot;0.0000&quot;); this is at the top of the page and the code which im trying to use this is as follows <% //to test for null values String va1 = &quot;&quot;; if...
  19. chaddu1256

    why does this not work

    thanks alot babyjeffy, worked like a champ
  20. chaddu1256

    why does this not work

    <% //to test for null values String va2 = &quot;&quot;; if (utilWrap1.getExtension8() == 0.000000){ va2 = &quot;&nbsp;&quot;; } else{ va2 = utilWrap1.getExtension8(); } %> For some reason this is breaking the page. Basically the utilWrap1.getExtension8 is pulling some stuff out of an oracle...

Part and Inventory Search

Back
Top