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 Wanet Telecoms Ltd 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: *

  • Users: chaddu1256
  • Content: Threads
  • Order by date
  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

    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...
  11. 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...
  12. 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...
  13. 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...
  14. 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...
  15. 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...
  16. chaddu1256

    finishing off email script

    I wrote a script that we use to email a form off. The code is as follows. <% Set Mail = Server.CreateObject(&quot;Persits.MailSender&quot;) Mail.Host = &quot;10.1.25.10&quot; Mail.From = Request.Form(&quot;email&quot;) Mail.FromName = Request.Form(&quot;name&quot;) &...
  17. chaddu1256

    form submission page

    We recieved a website from our web hoster so we could host the website locally at our facility. On the webpage there are two form submission pages. There is a mailaction.asp script file that was in the root directory of the webpage which I know is used to actually send the forms to an email...
  18. chaddu1256

    submitting a form to an email address

    Name: Address: City: State: Zip: Day Phone: Eve Phone: E-mail Address: Inquiry: I have a form like this...it does have text boxes but i couldnt figure out how to get em posted on here. I want to have two buttons on the bottom of this form here on the webpage. One I want to reset the form, the...
  19. chaddu1256

    submit button

    Im doing a webpage and i have a form on the webpage with typical things like First Name, Last Name, Address etc.. My question is how would I go about putting a submit button under this form that will take all the information from the form, add it to a new email, and send it to a certain...
  20. chaddu1256

    setting up agents for dial up machines

    We have a few machines that connect to the internet with dial up accounts. I was wondering how we get them to tag our ePolicy server. I set up a test machine with my home dial up account to test and see if the agent could connect to our server. We then gave our server a conduit IP address to...

Part and Inventory Search

Back
Top