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

    Systems Eng vs Comp Eng vs Comp Sci

    What is the difference between Systems Engineering, Computer Engineering and Computer Science? This is really bothering me.
  2. AR1982

    Tomcat can't see beans.

    Sorry I forgot to include this: useBean id = what you want to refer to the bean as in your code
  3. AR1982

    Tomcat can't see beans.

    Do you have this at the top of your code for your JSP page? <jsp:useBean id=&quot;DBBeanId&quot; scope=&quot;page&quot; class=&quot;project.DBBean&quot; /> Is your bean part of a package?
  4. AR1982

    Passing a JSP variable from a resultset into a HTMl form

    Try making these changes SELECT count(messageNr) as Count FROM messages int Countresultaat = resultaat.getInt(&quot;Count&quot;); String result = Countresultaat.toString(); input type=&quot;hidden&quot; name=&quot;Begin&quot; value = &quot;<%= result %>&quot;>
  5. AR1982

    Passing a JSP variable from a resultset into a HTMl form

    Menno You need to change the variable in hidden name value to Countresultaat instead of CountResultaat because that is how you have it defined as: String Countresultaat = resultaat.getString(&quot;count(messageNr)&quot;);
  6. AR1982

    First Job out of College

    I am an MIS major going into my senior year of school. I have 3 internships under my belt and have had some great experience in system design and programming. I want to get a job at one of the big IT consulting firms such as Accenture,Booz Allen, AMS, BearingPoint, Braxton, or Cap Gemini to...
  7. AR1982

    Excel File Download Using JSP

    I figured the answer out. For anyone who wants to know, you just add the line: wb.write(response.getOutputStream()); Insert it between wb.write(fileout); and fileout.close();
  8. AR1982

    Excel File Download Using JSP

    I have one program that makes excel reports from an Access database using POI. This program saves the reports to a Tomcat server on my system. I have a JSP called DisplayReports which uses a JavaBean to find the files on the server and post links for each file to another JSP called...
  9. AR1982

    Running Servlets using web.xml

    I am running Tomcat 4.0.6 and J2SE 1.4.1.03. When try to run my servlets from the name I have mapped to it from the descriptor it will not run. It will only run when I put the full name of the class into the URL. What is causing this problem?? My file directory is - C:\Program...

Part and Inventory Search

Back
Top