Forum: JSP May 18th, 2007 |
| Replies: 7 Views: 4,390 Re: How to install JDBC Driver for MSSQL ? On thing I would say is "Just Say NO!" to MS SQL 2000... It is NOT a good DB... it is prone to deadlocks and on any serious system it will be a serious weakness... the number of concurrent... |
Forum: JSP May 18th, 2007 |
| Replies: 5 Views: 968 |
Forum: JSP May 18th, 2007 |
| Replies: 3 Views: 1,448 |
Forum: JSP May 18th, 2007 |
| Replies: 2 Views: 938 |
Forum: JSP May 18th, 2007 |
| Replies: 3 Views: 7,792 |
Forum: JSP May 17th, 2007 |
| Replies: 4 Views: 2,036 Re: JSP Sessions Help The links provided to Marty Hall's book info have some valid information, but they book is not good, Marty Hall intentionally avoids anything useful in all but the most trivial applications. Also... |
Forum: JSP May 17th, 2007 |
| Replies: 2 Views: 729 Re: Pleeeeeeeese help me The simple answer here is to do some debugging by putting some debug code into your class.
Start by setting a starting value to rating such that you have,
String rating = "Rating Not Null";
Then... |
Forum: JSP May 16th, 2007 |
| Replies: 3 Views: 1,727 |
Forum: JSP Apr 28th, 2007 |
| Replies: 26 Views: 4,997 |
Forum: JSP Apr 26th, 2007 |
| Replies: 1 Views: 1,017 Re: about jsp files I am not sure exactly what you are trying to do here, so if I am off a great deal, please forgive me.
If you have 2 different "applications" they are isolated by Tomcat, though a workaround may... |
Forum: JSP Apr 26th, 2007 |
| Replies: 26 Views: 4,997 Re: Help for learnign JSP Java is a powerful tool. Not as powerful as a C/C++ tool could be, but MUCH easier to use and faster to develop with. Easier to troubleshoot, etc..
I learned programming long before Java was an... |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2007 |
| Replies: 35 Views: 5,363 |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2007 |
| Replies: 35 Views: 5,363 |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2007 |
| Replies: 35 Views: 5,363 |
Forum: JSP Apr 26th, 2007 |
| Replies: 26 Views: 4,997 Re: Help for learnign JSP Originally J2EE was a short acronym for a Java platform variant for each version....
Thus Java 1.2 (Called Java 2) had J2SE and J2EE (Standard Edition and Enterprise Edition) respectively. The EE... |
Forum: JavaScript / DHTML / AJAX Apr 25th, 2007 |
| Replies: 35 Views: 5,363 |
Forum: JSP Apr 24th, 2007 |
| Replies: 4 Views: 1,321 Re: about scop at jap Application scope, as mentioned, is for sharing data among ALL sessions within an application... this can be useful for many purposes, often a hit count is used as an example, BUT that is a... |
Forum: JavaScript / DHTML / AJAX Apr 24th, 2007 |
| Replies: 35 Views: 5,363 |
Forum: JavaScript / DHTML / AJAX Apr 24th, 2007 |
| Replies: 35 Views: 5,363 |
Forum: JavaScript / DHTML / AJAX Apr 24th, 2007 |
| Replies: 35 Views: 5,363 |
Forum: JSP Apr 18th, 2007 |
| Replies: 4 Views: 1,026 Re: jsp jsp jsp You guys are missing the point, this person wants to go other way... they have a date, in a string they want to get the timestamp object that equals that date.... not the other way... |
Forum: JSP Apr 18th, 2007 |
| Replies: 4 Views: 1,359 Re: Logging Yes, and we have someone else who seems to think logging does apply to JSP... and winner is.... well the person who asked the questions originally then isn't it.. ;-)
Does sarcasm play well in... |
Forum: JSP Apr 17th, 2007 |
| Replies: 26 Views: 4,997 Re: Help for learnign JSP I use ASP/ASP.Net and VBA at work from time to time... more often than I would like to be honest... What you have to realize is that VB (Visual Basic) was Microsoft's way of reviving the BASIC... |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 1,639 Re: running servlets First of all, it doesn't matter what you did with the .java file... Tomcat really cares about the servlet .class file
You have to tell Tomcat what you call your servlet within the web.xml file...... |
Forum: JSP Apr 13th, 2007 |
| Replies: 5 Views: 3,486 Re: Creatin table in JSP OK, so you have the excel converted to Access and I assume you can access the Access to query the data. That is a confusing statement... anyway, you will want to format a table that can be included... |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 1,359 Re: Logging How you can say logging is not related to JSP.... are you suggesting that logging can't be done in JSP? If so, then JSP designers seems to have missed something that is vital to all programming and... |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 1,116 Re: Help in JSP Doubt Glad to hear it, it would be great if you could share a short message about what the problem turned out to be, so others who read this, who perhaps have similar issues, will learn from your... |
Forum: JSP Apr 13th, 2007 |
| Replies: 26 Views: 4,997 Re: Help for learnign JSP Now, for some programming advice...
using Java & JSP is not so hard...
You can put all the code into the JSP pages, you can separate some or all of your logic into servlets (small independant... |
Forum: JSP Apr 13th, 2007 |
| Replies: 26 Views: 4,997 Re: Help for learnign JSP Now I have not seen the site in the link above and jwenting and I have had words over "opinion" about what is right and what is not... Unfortunately, I find his posts to be very little help to most... |
Forum: JSP Apr 13th, 2007 |
| Replies: 5 Views: 3,486 Re: Creatin table in JSP If you want to work with Excel, you should look at using ASP rather than JSP... there are many ActiveX controls which would allow the Excel sheet to edited inplace on the browser...
Now that I said... |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 1,026 Re: jsp jsp jsp use
DateTime.parseDateTime(String)
or
DateTime.parseDate(String)
Each will return a DateTime object from a string in a standard format... if it doesn't inderstand the string it will throw a... |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 1,265 Re: <%@include file> see my first post above... unfortunately for JSP the return characters at the end of each line are sent to the response buffer, so by the time you get to you include directive, you already have... |
Forum: JSP Apr 13th, 2007 |
| Replies: 3 Views: 1,968 |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 1,116 Re: Help in JSP Doubt Can you provide more specific details about what you have done, are trying to do?
If you separate the logic and presentation then you need to pass state between the logic component and the... |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 1,265 Re: <%@include file> Again, perhaps I can help more if you provide more details about what you are trying to do... |
Forum: JSP Apr 13th, 2007 |
| Replies: 4 Views: 1,265 Re: <%@include file> What are you referring to? typically the problem with include files is that the response buffer either contains data already or has been sent... you can't change what is buffered or sent but you... |
Forum: JSP Apr 13th, 2007 |
| Replies: 3 Views: 1,968 Re: ArrayList is best ,why Can you please explain what you are referring to a little better?
Vector was like an array that grew as needed, but its performance is not very good, since linkedlist has been enhanced and... |
Forum: JSP Apr 13th, 2007 |
| Replies: 2 Views: 1,922 Re: how to call javabean from jsp Push, can you provide a little clearer post with more specific details about what you are trying to do and what the problem is...
typically in JSP you would use the useBean tag to indicate what Bean... |
Forum: HTML and CSS Apr 11th, 2007 |
| Replies: 10 Views: 1,510 Re: I have a form problem I totally agree on all points above, running Perl on Windows would be better even than running ASP on Windows in my opinion ;-)
I learned Perl & CGI back in about 94 or 95... A good friend, who was... |
Forum: HTML and CSS Apr 11th, 2007 |
| Replies: 10 Views: 1,510 Re: I have a form problem Air is a drug, and we're all addicted to it ;-)
OK, thanks, that is where I was trying to go here... I suspected that you didn't have anything running on the server to write the data to the... |