sovan chatt

Ranch Hand
+ Follow
since Aug 09, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by sovan chatt

I have a jsp page where I have embedded a video.Now I want a link to appear ,(after the video is played at least once) for the user to navigate to another jsp page. How will I do it? I have used <EMBED> tag to add the video to the jsp page
I started using the jquery validation plugin but I am facing the folloe=wing problems
1)I have 1 text field("flno") and 2 select boxes("src" and "dest") ,now if I select the "flno " I dont need to use the other select boxes ,else the select boxes become mandatory.
2)What shall I do to check that the values in select boxes are never equal,is there something like notequalTo rule?
I did the following


But How will I print an error message right next to the text box and select box(if any of them is null)?
I have a html form ,where I have text fields and select box .now I want to do the following:
If any of the fields is null then an error message will be shown beside the fields which are null(and not on a alert box) .How will I do it?
I am trying to create a table using the following query

but whenever I try to do so ,I get the following errorErrror ORA-00904: invalid column name.I can not trace the error. Please help!
Yes,I used the input field in side the form...Here is the entire form..I used id attributes inside test and Dept. Date field.
12 years ago
i have used the following in <input name="demo1" id="demo1" type="text">,now request.getParameter("demo1") fetches null!!
12 years ago
In a html form I have wrritten this,<input type="text" id="demo">,Now if I use the method request.getAttribute("id") in the servlet I get a null value.Why is that?
How can I use "id" attribute declared in a html form ,in a servlet.Or is it the case that only getparameter will work with name attribute
12 years ago

The output of the code is h1 h4;so,the p1 method calls parent class's P() method and child class's P2() method.Which I feel is very confusing.What is the general concept?
12 years ago
I have a trigger which fires before the insert and delete operation on a table,and before insertion the no of employees column(per department) will be increased by 1,before deletion the no. of employees column is going to be decreased by 1;

but the problem is if I try to delete or update I get the error
*
ERROR at line 1:
ORA-04091: table SCOTT.EMPDEPT is mutating, trigger/function may not see it
ORA-06512: at "SCOTT.T1", line 5
ORA-04088: error during execution of trigger 'SCOTT.T1'.What to do?
I am using eclipse indigo to run my java files.The codes run properly but when I try to see the class hierarchy I get the error "Rt.jar Has No Source Attached" .So,I googled and did the following:I tried to go in Windows and preferences and set the jdk path..even then it would not work.What to do now?
Hi! all,
I want to learn developing Android Apps.What book should I start with?I was thinking about buying a couple of books :Learning Java For Android Development(to brush up my java ) and Head First Android Development.Is it a good choice.?
Thanks in advance..
12 years ago
removeElementAt() method is available in vector class so,its also available to stack class ..but using this method any element can be eliminated..which cannot be a proper implementation of stack... or is it?
12 years ago
the above code prints small x once..why??while loop is a infinite loop and if condition never gets exected.but still i got the output?!!
12 years ago