Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~6K People Reached
Favorite Tags
Member Avatar for pooran.c

Does google chrome breaks the large form (example in my case length 30000kb) before submission ? because when i analyse the network with network protocol analyser , IE doesnt break the large form , and submitts the whole form as one reqeust . but google chorme break into 2 chunks …

Member Avatar for pooran.c
0
195
Member Avatar for pooran.c

Hi , I have very large formdata to be submitted in JSP . But submission is not working in chrome but it works in IE n Firefox. is there any work around for form submission in Chrome??

0
83
Member Avatar for pooran.c

What is the use of tiny mce javascript library ? I m working on jsp project were it uses tinymce.js . i actullay dont know what it does .

Member Avatar for cereal
0
245
Member Avatar for pooran.c

Hi All, I have a JSP which contains a form , when the form is submitted the control comes to servlet . this is working fine in IE. but in google chrome it going to error page . When i debugged from the develper tools , i found one difference …

0
122
Member Avatar for pooran.c

import java.text.SimpleDateFormat; import java.util.Date; public class StringtoDate { public static void main (String args[]){ String inputDate = "04.11.2013 11:14:45 GMT 00:00"; Date dat = convertStringToDate(inputDate); } public static Date convertStringToDate(String inDate){ SimpleDateFormat sdf = new SimpleDateFormat("mm.dd.yyyy hh24:mm:ss"); Date date = new Date(); try { date = sdf.parse(inDate); } catch (Exception …

Member Avatar for pooran.c
0
2K
Member Avatar for pooran.c

i have a xhtml page which has has login box . onload of the page, a scripts is called which hides the box , and on pressing login link one more scripts displays box (login box is in div tags). now the problem is when user enters the wrong login …

Member Avatar for lambing
0
219
Member Avatar for pooran.c

int [10] array_int=new int [10]; array_int[0]=0; array_int[1]=1; array_int[2]=2; array_int[3]=3; array_int[4]=4; array_int[5]=5; question is: how to print in circular manner starting from the middle(index is 2) that is output : 2 3 4 5 0 1 .

Member Avatar for stultuske
0
358
Member Avatar for pooran.c

There are two javascript function . the second method would call the first function passing two parameter. in load_wood_excel function i am not able to access the parameter.. can any ony tel me how to pass interger , and also how to access the parameter in function???????? function load_wood_excel(row,column){ alert(row); …

Member Avatar for Airshow
0
168
Member Avatar for pooran.c

why do have to import org.apache.struts.validator.[U]DynaValidatorForm[/U]? mainly what is the use of DynaValidatorForm.

0
77
Member Avatar for pooran.c

i was jus trying to crete a form and if i submit the form the values should be displayed in the browser. code is: [U] html file- [CODE] [/U]<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Insert title here</title> </head> <body> <form action="firstjsp.jsp" method="get"> …

Member Avatar for javaAddict
0
177
Member Avatar for pooran.c

that is expected output is [CODE] sun mon tue wed thu fri sat 1 2 3 4 5 6 7 8 9 10 .... ... ... 29 30 31 [/CODE] my code: [CODE]static void print_31days(int a[][]){ int i=1; while(i<=31) { int some=0;//some is the startdate of the month of the …

Member Avatar for pooran.c
0
159
Member Avatar for pooran.c

import java.util.LinkedList; import java.util.ListIterator; import java.io.*; public class llist { public static void main(String[] args) { String abc="poo"; String[][] array_string; array_string= new String[10][10]; array_string[0][0]="123"; for(int i=0;i<5;i++){ for(int j=0;j<5;j++){ array_string[i][j]=(String)j; System.out.print(array_string[i][j]); System.out.println(""); } } } } error is: Exception in thread "main" java.lang.Error: Unresolved compilation problem: Cannot cast from int to …

Member Avatar for pooran.c
0
239
Member Avatar for pooran.c

steps 1.I create a java project. 2.in the same java project i ll create a main class(say sample). 3.i ll call a function(say sample_function()) inside main class. question is: where should i implement the function(sample_function()) i.e should i have to create a new class in the same project or i …

Member Avatar for JamesCherrill
0
155
Member Avatar for pooran.c

code above would print first month correct. but from the second month days or not in order.[code]import java.io.*; public class calendertest { public static void main(String[] args) { int months=12; int days=0; int i=0; for(months=1;months<=12;months++) { System.out.println("----------------------"); if(months%2==1) { for(days=0;days<=31;days++) { if (days%7==1) System.out.println("sunday-"+days); else if(days%7==2) System.out.println("monday-"+days); else if(days%7==3) System.out.println("tuesday-"+days); …

Member Avatar for JamesCherrill
0
1K
Member Avatar for alex1050

I need help understanding the for statements. This segment of code repeats itself as so 1 22 333 4444 However, i need understanding in how it repeats itself. Thanks [CODE]#include <stdio.h> int main () { int i,j; for(i=1;i<5;i++) { for(j=1;j<=i;j++) printf("%d",i); printf("\n"); } }[/CODE]

Member Avatar for tomato.pgn
0
75
Member Avatar for pooran.c

I need to implement gregorian calendar in java Please give me ideas how to start and what to use?

Member Avatar for mKorbel
0
108
Member Avatar for plasticfood

[CODE]if(count == 4){ qFinal.enqueue(q.peek()); if(count3 == 0){ System.out.println(qFinal); break; } else{ sort(qFinal); } } [/CODE] this code is inside a while loop, and with the break statement, it should break out of the loop right? instead i think the program also executes the sort(qFinal) method b/c after it prints qFinal …

Member Avatar for masijade
0
190
Member Avatar for pooran.c

import java.io.*; class InputDiagnosis{ public static void main(String args[]) throws IOException { char ch; int digit=0; int upper=0; int lower=0; int other=0; BufferedReader inputstream =new BufferedReader(new InputStreamReader(System.in)); System.out.println(" Type some text. When done, press Enter to Quit:"); do{ ch=(char) inputstream.read(); if(Character.isDigit(ch)) digit++; else if(Character.isUpperCase(ch)) upper++; else if(Character.isLowerCase(ch)) lower++; else other++; …

Member Avatar for abhishek20
0
186
Member Avatar for pooran.c

guys help me in implementing "doubly linked list and circular linked lisct in c" . I know the logic but i am finding difficult to code.

Member Avatar for Ezzaral
0
125
Member Avatar for pooran.c