Forum: JSP Jul 21st, 2009 |
| Replies: 3 Views: 566 the radio buttons are inside three loops , can anyone take a look on the code and give suggestion ? |
Forum: JSP Jul 21st, 2009 |
| Replies: 3 Views: 481 SELECT (MONTH(CURDATE-MONTH(issudate)) AS ' Months' FROM table Union
SELECT (DAY(CURDATE-MONTH(issudate)) AS 'Days' FROM table Union
SELECT (YEAR(CURDATE-MONTH(issudate)) AS 'Year' FROM table
... |
Forum: JSP Jul 20th, 2009 |
| Replies: 3 Views: 566 Hi everyone;
I’ve written the following for some purpose :
<%
Vector v1,v2;
String sql;
String sqlvsp; |
Forum: JSP Jul 14th, 2009 |
| Replies: 6 Views: 1,383 ajax
take a look
http://www.daniweb.com/forums/thread197237.html |
Forum: JSP Jul 14th, 2009 |
| Replies: 2 Views: 459 when you post the error , please post your code |
Forum: JSP Jul 14th, 2009 |
| Replies: 15 Views: 1,468 indeed , am not using MVC structure but i have done what you want before, you can take a look
<select name="select" size="1" >
<%
String sql = "select *from table ";
Vector... |
Forum: JSP Jul 14th, 2009 |
| Replies: 3 Views: 689 you do not really need to use jsp to create tabs
you can use javascript
http://www.roseindia.net/html/Tab.shtml
or ajax
http://www.roseindia.net/struts/struts2/struts2uitags/tabbedpanel.shtml... |
Forum: JSP Jul 14th, 2009 |
| Replies: 5 Views: 502 take a look on the following tutorial
http://roseindia.net/jsp/online-quiz-application-jsp.shtml |
Forum: MySQL Jul 14th, 2009 |
| Replies: 4 Views: 393 you need to update the primary key when you delete the record
example
delete from number1 where name in ('Nico ','Joy')
then
UPDATE number1 SET number= number- 1 where name ='Marko';... |
Forum: JSP Jul 13th, 2009 |
| Replies: 0 Views: 616 Hi everyone ;
I have read The JFreeChart Class Library Version 1.0.13 Installation Guide and I follow the instruction there but I got some errors while the Installation; allow me to show the... |
Forum: JSP Jul 12th, 2009 |
| Replies: 3 Views: 451 thanks
it has been solved |
Forum: MySQL Jul 12th, 2009 |
| Replies: 0 Views: 270 I want to find the percentage for each question’s answer and how many user response to that question
The answer either yes , no, escaped (null)
Table structure :
CREATE TABLE ... |
Forum: JSP Jul 11th, 2009 |
| Replies: 5 Views: 541 it has been solved :
Vector x,y,z;
x=database.jdbcOneRowQuery(sqlS);
y=database.jdbcOneRowQuery(sqlD);
String value1=x.toString().replaceAll(("]"), "");
if (value1.startsWith("[")){ |
Forum: JSP Jul 9th, 2009 |
| Replies: 5 Views: 541 thank you adatapost for noticing (Integer.parseInteger())
indeed , i tried the code u provide me but i got the following erroer
org.apache.jasper.JasperException: Unable to compile class for... |
Forum: JSP Jul 9th, 2009 |
| Replies: 5 Views: 541 when i replace the code
if(yes.get(0)> no.get(0) ){
for(int j=0;j<1;j++){
out.print("yes");
}
}
else{
out.print("no");
} |
Forum: JSP Jul 7th, 2009 |
| Replies: 5 Views: 541 Hi everyone;
I have table contains question and answer columns , the answer either yes or no
, I want to count the answer yes and answer no then compare the two results and if the count(answer) yes... |
Forum: JSP Jun 29th, 2009 |
| Replies: 3 Views: 451 sir , a i use jsp but i do not follow MVC structure (no javabeans, no servlet classes ) every thing inside the jsp file as you see in my code .
so it seems stupid question but i stuck here . so can... |
Forum: JSP Jun 29th, 2009 |
| Replies: 17 Views: 1,900 am new member here, and i just wanted to help here
plus this code is working , i have used it before .
actually i know some in ajax that helped me before in my projects |
Forum: JSP Jun 29th, 2009 |
| Replies: 5 Views: 1,274 double check on database schema and tables and columns
are they exactly what you have in the code? |
Forum: JSP Jun 29th, 2009 |
| Replies: 17 Views: 1,900 just inform me if it does not work |
Forum: JSP Jun 29th, 2009 |
| Replies: 17 Views: 1,900 the best answer is ajax and actually you do not to learn ajax just copy
the code i will gave and follow the guidlines copy and paste the attached file into your project folder :
1- copy and... |
Forum: JSP Jun 29th, 2009 |
| Replies: 3 Views: 451 Hi everybody,
I am going to develop a web application by using jsp, in this application when I retrieve multiple rows from table into form as following :
<%Vector v1,v2;
jmm.Database... |