Forum: Geeks' Lounge Sep 20th, 2009 |
| Replies: 15 Views: 624 |
Forum: Posting Games Sep 16th, 2007 |
| Replies: 2,356 Views: 217,965 You get ice.
I put in myself. |
Forum: JSP Sep 16th, 2007 |
| Replies: 2 Views: 11,024 It could probably be because you need to specify id for the select element. Some browsers pass data based on id, others based on the name attribute. To be safe, it is a good practice to define the id... |
Forum: JSP Sep 16th, 2007 |
| Replies: 1 Views: 870 If you are looking at web development, I would recommend that you install Tomcat (http://tomcat.apache.org/). |
Forum: Java Sep 16th, 2007 |
| Replies: 2 Views: 823 You will have to declare an instance method if you are overriding.
To use a non-static method in main(), you will need to create an instance/object of the class. Since this class is abstract, you... |
Forum: JSP Aug 13th, 2007 |
| Replies: 2 Views: 5,964 I'm not sure I understand your problem. A little more code and clear explanation maybe! |
Forum: Java Aug 13th, 2007 |
| Replies: 3 Views: 5,554 You can save it as a String (VARCHAR) or CLOB. That depends on what you want to store.
That's got nothing to do with saving the data or the file. You could make use of a HTML parser or a... |
Forum: Oracle Jan 30th, 2007 |
| Replies: 2 Views: 3,159 It's possible. However, your description sounds like a two-tiered application. |
Forum: Java Jan 30th, 2007 |
| Replies: 2 Views: 1,686 Wow! How do you expect someone to read that message? Please make use of code tags and line breaks. |
Forum: Database Design Jan 30th, 2007 |
| Replies: 6 Views: 2,653 The complication is not always worth it. As per my experience, normalization does not always mean better performance. It is sometimes better to introduce redundancy to improve performance. But that's... |
Forum: Java Jan 30th, 2007 |
| Replies: 4 Views: 2,459 From your code:
while (s = "n"){
This is wrong in two aspects:
1. You are trying to do an assignment operation instead of comparison.
2. Even if you want to compare Strings, you should be... |
Forum: JSP Jan 29th, 2007 |
| Replies: 6 Views: 3,510 Yes, you will have to read the log file and display the content in a JSP.
No, there isn't a way of doing this automagically. |
Forum: PHP Jan 29th, 2007 |
| Replies: 2 Views: 2,771 Asking others to solve your homework and posting in the incorrect forum are inappropriate to the basic forum rules. I suggest that you start with searching information on Google. This will give you... |
Forum: Oracle Jan 29th, 2007 |
| Replies: 2 Views: 7,888 This doesn't appear to be a task that can be performed with a single SQL if that was what you were looking for. Even if it is possible (because I'm not very good at SQL myself), the query itself is... |
Forum: Geeks' Lounge Jan 29th, 2007 |
| Replies: 13 Views: 5,642 160; missed 11, 14, 17 :o |
Forum: Geeks' Lounge Jan 29th, 2007 |
| Replies: 3 Views: 1,047 |
Forum: Database Design Jan 29th, 2007 |
| Replies: 6 Views: 2,653 Yeah, it's not in 3NF. I thought it was obvious with the example on the Wikipedia link. It's similar to your own example.
cities (cityID, cityName)
districts (districtID, cityID, districtName)... |
Forum: Java Jan 28th, 2007 |
| Replies: 7 Views: 1,830 I guess I'll try reading teh book again. It might be an interesting study and a good topic to discuss practices. :) |
Forum: Geeks' Lounge Jan 28th, 2007 |
| Replies: 8 Views: 2,417 My average score is 3532 and that's the only time I have played. |
Forum: Java Jan 28th, 2007 |
| Replies: 7 Views: 1,830 I see that somebody considers this post of mine as a mockery. It may have been due to me not being a native English speaker or me posting the wrong smilie. But I would genuinely wish to know the... |
Forum: Geeks' Lounge Jan 28th, 2007 |
| Replies: 29 Views: 4,987 That's been my experience in US. Public transport is limited and having a car proves relatively economical, much in contrast with how it works in Mumbai. Driving a car in Mumbai is the last thing I... |
Forum: Database Design Jan 28th, 2007 |
| Replies: 6 Views: 2,653 The first approach is the logical thing for a database design. Having a lot of data is not a consideration while designing a database. The essence of a database design is to model generic entities... |
Forum: DaniWeb Community Feedback Jan 28th, 2007 |
| Replies: 0 Views: 948 I am probably not the first person to ask this but it feels rather incorrect to me.
You're browsing the JSP forum
Discussion about: A web development language based on Java.
This line on top... |
Forum: Geeks' Lounge Jan 28th, 2007 |
| Replies: 20 Views: 4,295 I suppose two of them were Alaska and Hawaii. :p It's easier if you play it like a jigsaw puzzle. My cousin who has no idea of US got 50% by fitting the pieces. |
Forum: DaniWeb Community Feedback Jan 28th, 2007 |
| Replies: 36 Views: 6,947 I personally find it difficult writing a sloppy post. Most of the capitalization gets typed without any effort and writing a sloppy post takes more effort. :p
Besides what you mentioned, I can't... |
Forum: DaniWeb Community Feedback Jan 28th, 2007 |
| Replies: 0 Views: 808 I see that there is a nice new feature. The last post shows up on the home page. :cool: :cool: :cool: It's a good thing to have IMO. However I am used to other forums and they show up a posting... |
Forum: DaniWeb Community Feedback Jan 28th, 2007 |
| Replies: 100 Views: 13,242 |
Forum: Java Jan 26th, 2007 |
| Replies: 7 Views: 1,830 Refer a couple of them to me so that I could remember not to mention it while replying somewhere. :cheesy: |
Forum: Java Jan 26th, 2007 |
| Replies: 7 Views: 1,830 Sun's Java tutorial (http://java.sun.com/docs/books/tutorial/)
Thinking in Java - 3rd edition (http://www.mindviewinc.com/downloads/TIJ-3rd-edition4.0.zip) |
Forum: Java Jan 26th, 2007 |
| Replies: 2 Views: 1,694 People don't solve homework here. What effort have you made so far? |
Forum: Java Jan 26th, 2007 |
| Replies: 3 Views: 1,262 It is possible and it is bad/redundant code design.
If an object has to do some operation on itself, it can make use of the this keyword. There is no need to pass a self-reference. That's simply a... |
Forum: JavaScript / DHTML / AJAX Jan 26th, 2007 |
| Replies: 2 Views: 7,651 Could you please wrap your code with [code] tags the next time you post it? |
Forum: JSP Jan 26th, 2007 |
| Replies: 14 Views: 20,564 Get connecting JSP with Mysql (http://www.httpguru.com/x.php?subaction=showfull&id=1168011453&archive=&start_from=&ucat=5)
The link in his signature is an indicator of the crap he's mentioned in... |
Forum: Java Jan 26th, 2007 |
| Replies: 3 Views: 1,262 Your method signature is, kind of, redundant. When you are calling a method on an object, you don't need to pass the same object to it. Whatever information you need about the object is already... |
Forum: Java Jan 26th, 2007 |
| Replies: 6 Views: 6,672 build.xml could be in the current directory (the directory where you are executing the command). If your build script is named something else, you can specify that with ant too. |
Forum: IT Professionals' Lounge Jan 25th, 2007 |
| Replies: 2 Views: 1,475 I don't know about the specific trends but sysadmins are always in demand. |
Forum: DaniWeb Community Feedback Jan 25th, 2007 |
| Replies: 100 Views: 13,242 Are you bidding for that? :p |
Forum: Java Jan 25th, 2007 |
| Replies: 2 Views: 1,150 Please do not duplicate posts.
http://www.daniweb.com/techtalkforums/thread67707.html
Post some relevant information about your problem. |
Forum: Advertising Sales Strategies Jan 25th, 2007 |
| Replies: 1 Views: 1,899 You know you could use Google to search for that information. :p There are a few posts which talk about adsense too.
https://www.google.com/adsense/
http://en.wikipedia.org/wiki/AdSense |
Forum: Database Design Jan 25th, 2007 |
| Replies: 3 Views: 2,073 You don't need to store records in HTML on a web server. You could have an XML if you are trying to avoid databases. HTML could be generated on the fly. |