- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 4
- Posts with Upvotes
- 3
- Upvoting Members
- 4
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Re: You could use component like a dropdown box to limit the users choices to a range of numbers. | |
Re: I would use an array of ints. Then loop through the length of the array. Then the nested loop output the numbers from the end of the array back to the beginning using the first loop as the counter to denote how many elements need printing. | |
Re: Perhaps there is an issue with your web.xml file. How are you outputting your Hello World program? E.g. using a class or sciptlet in the JSP page. | |
Sorry if this has been asked before. I have a jframe with a textcomponent in it and a menu with an exit option. When you select the exit option a funciton is called that checks whether a change has been made to the document and the user can select to … | |
Re: Do you mean you need the user to submit their name? If so you could just use and HTML form and post it to your php page for processing. | |
Re: [quote=jiruiz78;390572]you can call them DEVIGNERS! (developers / designers)[/quote] Good terminology. But i don't know why it isn't Web Programmer and Web Designer and the middle ground is a Web Developer:-O | |
| |
Re: [quote=no1zson;405704]TheGathering, Compactdisk would be my vehicle, and Cdartist would be a car or truck. [/quote] The Compactdisk class is really the specification for a car (or Cd no artist) and Cdartist a specification of a truck (cd with an artist). The car or truck is the object that you instantiate … | |
Re: I don't know if you can do it but it might be possible to display images using the <marquee> tags and maybe hyperlink them to some kind of popup window. | |
Re: I think UML is a good for documenting while you develop your software. Sometimes you don't know what you need to do until it's done and UML provides a set of models which, if used appropriately, document your system in an easily readable fashion. | |
Hi. Is it possible to use a resultset from a scriplet in a <c:forEach> loop? E.g. [CODE]results = prepstatement.executeQuery(); request.setAttribute("results", results);[/CODE] [CODE]<c:forEach items="${results.rows}" var="row"> row.fieldValue <br /> </c:forEach>[/CODE] Thanks. | |
Re: Like Shawn says you could use Javascript which is available to most modern web browsers. There are probably lots of examples of Javascript games. Javascript could be used to manipulate your HTML document. For example, hiding or showing certain page elements depending on the games state. | |
Hi all. How do you get values from an appended url string using JSTL? For example: redirect.jsp?pageid=23 -how would i get that value? Thanks. | |
Re: Hi, i think you need to put them in the WEB-INF folder of your application and then shutdown and restart Tomcat. Edit: Sorry i think the packages need to go into the WEB-INF - classes folder. | |
Re: From the little i know of the subject, Adobe AIR allows you to use web based technologies for desktop applications and i would guess Flash would be included. Flash uses ActionScript 3 which is object oriented and i believe to be very powerfull. So as a guess i would say … | |
Hi. I was wondering if there was a 'best practice' for formatting an html form. I assume that you are not supposed to use tables for this. Any ideas? Thanks. | |
Re: If the new class uses some of the methods in the Customer class and is a type of customer then i would say extend/inherit the Customer class. Best practice would probably be to identify common functionality in the design and create a class from which all relevant classes can inherit. | |
Re: Sometimes applications require the use of system libraries and tools. Sometimes files may need to be copied to specific folders on the client maching. Another reason may be to ensure that certain software is present (e.g. the latest Java VM). Not all programs require this though. In java you can … | |
Re: Macromedia/Adobe have tutorials on their site for Dreamweaver i think. | |
Re: I've used ASP (not dot net) and PHP and much prefered PHP. | |
| |
I have a navigation system with rollover effects using css. all effects are in the same gif image and depending on the state (mouse over, selected, mouse out) a different section of the image is shown. Because the image is only referred to in the css file and a reference … | |
High, i've been looking on the MS website for old versions of Internet Explorer but can't find any downloads. I want to test a site to make sure it doesn't break in older browsers. If anyone knows where to find IE 5 on the MS site could you provide the … | |
Re: You can just turn of the php tags or echo the img tag [code=php] if ($cam == camelx) { ?> <img src="maledromidary.jpg" alt="" /> <?php } elseif ($cam == camely) echo "<img src='malebactrian2.jpg' alt='' />"; ?>[/code] | |
Hi. Can anyone tell me how i can make a call to a javascript function when a user clicks on some plain text. Thanks. | |
Re: I think the move is for tables to only be used for displaying data and CSS is used to organise the look and feel of the site. I think some older browsers still don't support (or not to standard) CSS, so this could be an issue with a site using … | |
Hi, can anyone point me in the right direction with incorporating rss feeds into web sites? Thanks. |