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 SkipVought 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. SalShaikh

    Why doesn't this work

    Can anyone tell me why the above code doesn't work and give me the following error and the bottom code does. Thanks /////////////////////////////////// NOT WORKING CODE /////////////////////////////////// <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;> <%@ page...
  2. SalShaikh

    ORA-01843 NOT A VALID MONTH ERROR

    THANKS FOR YOUR RESPONSE... but i figured it out... in oracle sql process from the bottom up and all i did was move the function that was causing the error above the clause that narrowed down the number of rows returned to be only the proper dates.
  3. SalShaikh

    ORA-01843 NOT A VALID MONTH ERROR

    hi all sql/oracle gurus and experts, I need assistance with the following problem I have a table (structure follows) Name Null? Type ------------------------------- -------- ---- SAMPLE_ID NOT NULL NUMBER(10) NAME...
  4. SalShaikh

    XSLT: Table defination question....

    basically you need to use javascript with your xslt to test the string and split the string into twenty characters and then do a document.write let me know if you need exact code Sal
  5. SalShaikh

    Referring to javascript variables

    hi there, there is only one way that I know of. try building the entire tag using a document.write() that way you can concatenate the variables into the string. for example: var ffile='10x7'; var fwid=797; var fhei=45; Put the following in the body of your html file <script...
  6. SalShaikh

    Validating fields in forms

    can you also post the html page with your form elements thanks
  7. SalShaikh

    menus

    can u post the js files you are using
  8. SalShaikh

    simple xsl IF error

    try this <xsl:if test!=&quot;DocLocation=NULL&quot;> the null is without quotes let me us know if it works
  9. SalShaikh

    Java console output

    are you running XP if so this could be a problem running java apps
  10. SalShaikh

    Can I use Servlets to redirect user

    Hi all, I am writing a servlet that logs a person in to my system. My code for logging in and checking a successful login works but How would i redirect the user to go to a specific URL when logged in. I am using the following code...
  11. SalShaikh

    Servlets-update html doc

    The best place all the good code is at the source.... yes you guessed it http://java.sun.com they have good tutorials and script samples all free. enjoy Sal
  12. SalShaikh

    change submit button text on-the-fly - Can it be done?

    here is a solution: <html> <head> <script> function changeSomeOne(){ document.myForm.button2.value = &quot;Something Else&quot;; return true; }//end function </script> </head> <body> <form name=&quot;myForm&quot;> <input type=&quot;button&quot; name=&quot;button1&quot...
  13. SalShaikh

    differences between ie5 and ie5.5

    my senitments are the increased security layer in ie 5.5
  14. SalShaikh

    getting started

    okay you are right. Download JDK 1.4 SE from java.sun.com install that correctly... make sure you have the correct CLASSPATH variables and the PATH set. then download textpad from http://www.textpad.com that tool does it all... it highlights syntax and even compiles *.java files to *.class...
  15. SalShaikh

    Database connection

    hi lostInJava, this is very simple in java... first things first before the nine steps you have to have the JDBC drivers on your machine. http://msdn.microsoft.com/downloads/default.asp?URL=/downloads/sample.asp?url=/msdn-files/027/001/779/msdncompositedoc.xml I am positive you can download...
  16. SalShaikh

    Collapsing Matrix Report Column

    TO any guru out there... HELP! Okay here is the problem - I have matrix report and the sql behind the report runs fine. But the problem arises in my RepeatingFrame for the Matrix format Trigger. My results return beautiful matrix report. My format trigger on the matrix repeating frame tells the...

Part and Inventory Search

Back
Top