Forum: Pay-Per-Click Advertising 4 Days Ago |
| Replies: 18 Views: 4,832 Yes... Adbrite is more profitable if you have high traffic... |
Forum: Java 4 Days Ago |
| Replies: 0 Views: 128 Hi friends,
I am facing a problem with Signed jar file. I have two jar files.One contains applet class and other jar file contains supportive classes used by that applet.I was able to self sign the... |
Forum: Pay-Per-Click Advertising Dec 1st, 2008 |
| Replies: 18 Views: 4,832 i too got banned from adsense now i am using adbrite.It has lower earnings but doesnt ban anyone ..... |
Forum: RSS, Web Services and SOAP Apr 10th, 2008 |
| Replies: 0 Views: 1,512 hi friends
i am using xfire for webservice with spring ... i incorporate the spring servletContextAware interface for starting my server so that i can start it while tomcat server starts up...... |
Forum: JavaScript / DHTML / AJAX Apr 7th, 2008 |
| Replies: 3 Views: 5,376 In this code i am getting the modal window .. but when i put this accordion menu script its not working the modal window page.....I want a modal window in which i can put tab contents or sliding... |
Forum: JavaScript / DHTML / AJAX Apr 7th, 2008 |
| Replies: 3 Views: 5,376 <html>
<head>
<script type="text/javascript" src="modal.js"></script>
<script type="text/javascript" src="jquery-1.2.2.pack.js"></script>
<script type="text/javascript"... |
Forum: JavaScript / DHTML / AJAX Apr 4th, 2008 |
| Replies: 3 Views: 5,376 hi friends,
I need your help............. I have a div content in my home page.while clicking on that div i need a modal window... i have done that using jquery. In that modal window i need to... |
Forum: JavaScript / DHTML / AJAX Feb 12th, 2008 |
| Replies: 1 Views: 2,928 hi friends,
Can anyone tell me how to capture window events.I searched for events but i found resize,scroll. Does any mouse click ,mouse move ,mouse over events exists.My problem is ,i want to... |
Forum: JavaScript / DHTML / AJAX Feb 8th, 2008 |
| Replies: 2 Views: 2,286 You Provide sufficient information ?. You give the script which works in IE |
Forum: JavaScript / DHTML / AJAX Feb 8th, 2008 |
| Replies: 9 Views: 2,516 Did u get the responseText in IE ?
Can u alert the responseText in IE |
Forum: Community Introductions Feb 6th, 2008 |
| Replies: 3 Views: 582 Hi all friends,
I am an old member of this community.I am from india.My name is sree.I am an MCA (Master in Computer Application) holder and working as a software developer.This community is so... |
Forum: Windows NT / 2000 / XP Feb 1st, 2008 |
| Replies: 7 Views: 16,331 Does anyone have any options to recover from this error |
Forum: Windows NT / 2000 / XP Jan 31st, 2008 |
| Replies: 7 Views: 16,331 Details are
I am using windows xp.I want to connect internet using bsnl dial up connection.I used to connect through bsnl dial up connection.But now a days i cant connect and showing the error... |
Forum: Windows NT / 2000 / XP Jan 31st, 2008 |
| Replies: 7 Views: 16,331 hi friends,
When i connect my dialup connection , i am getting this error message
"Error 720: A connection to the remote computer could not be established."
can any one knows about... |
Forum: JSP Jan 30th, 2008 |
| Replies: 1 Views: 1,224 hi friends,
I want to create a chart (pie,linear) and bar diagrams for my project in struts.Anyone knows about this,please help me.Thanks in advance |
Forum: JSP Jan 30th, 2008 |
| Replies: 2 Views: 20,285 |
Forum: JavaScript / DHTML / AJAX Jan 30th, 2008 |
| Replies: 24 Views: 9,282 thanks a lot it worked fine......... |
Forum: JavaScript / DHTML / AJAX Jan 29th, 2008 |
| Replies: 2 Views: 2,278 |
Forum: JavaScript / DHTML / AJAX Jan 25th, 2008 |
| Replies: 2 Views: 2,278 hi friends
i have a problem in previewing image in mozilla browser.I will give the code.
script code
<script type="text/javascript">
function loading(img)
{ |
Forum: JavaScript / DHTML / AJAX Jan 25th, 2008 |
| Replies: 24 Views: 9,282 yea the exception was
TypeError : xmlObj.childNodes[0].firstChild has no properties |
Forum: JavaScript / DHTML / AJAX Jan 24th, 2008 |
| Replies: 24 Views: 9,282 It again doesn't work ?
var xmlObj = xmlHttp.responseXML.documentElement;
alert(xmlObj);
i put this alert message.when explorer it displays [Object] and in Mozilla it displays... |
Forum: JavaScript / DHTML / AJAX Jan 24th, 2008 |
| Replies: 24 Views: 9,282 function useHttpResponseSuggestId()
{
if (xmlHttp.readyState == 4)
{
if(xmlHttp.status == 200)
{
var textout = xmlHttp.responseText; ... |
Forum: JavaScript / DHTML / AJAX Jan 24th, 2008 |
| Replies: 24 Views: 9,282 my firefox version is 2.0.0.3 ! |
Forum: JavaScript / DHTML / AJAX Jan 24th, 2008 |
| Replies: 24 Views: 9,282 i am getting the textout value as above stated response.After that two try blocks are their.In IE the second try block is executing but in mozilla it enters in both the try block but returns... |
Forum: JavaScript / DHTML / AJAX Jan 24th, 2008 |
| Replies: 24 Views: 9,282 I am getting the response from firebug
<?xml version="1.0"?>
<code>
<name>sree</name>
</code> |
Forum: JavaScript / DHTML / AJAX Jan 23rd, 2008 |
| Replies: 6 Views: 6,754 yes we can do it in javascript
this is the method to be called
function noCTRL(e)
{
var code = (document.all) ? event.keyCode:e.which;
var ctrl = (document.all) ? event.ctrlKey:e.modifiers &... |
Forum: JavaScript / DHTML / AJAX Jan 23rd, 2008 |
| Replies: 24 Views: 9,282 Problem is when i run this code in IE it works fine.It takes the second try method in the index.jsp
When it comes to mozilla it throws an exception from the first try method as "Please use a new... |
Forum: JavaScript / DHTML / AJAX Jan 23rd, 2008 |
| Replies: 24 Views: 9,282 its calling the ajaxcontroller.java file which was written below
AjaxController.java
public class AjaxController extends HttpServlet {
/** Processes requests for both HTTP... |
Forum: JavaScript / DHTML / AJAX Jan 23rd, 2008 |
| Replies: 24 Views: 9,282 The problem is again in mozilla browser
Below is my index.jsp page in that i written the script of ajax
var xmlHttp;
function getXmlHttp()
{ |
Forum: JSP Jan 22nd, 2008 |
| Replies: 2 Views: 20,285 Hi friends
Can anyone tell me about the difference between <%@include file="abc.jsp" %> and <jsp:include file="abc.jsp"/> :-/ |
Forum: JavaScript / DHTML / AJAX Jan 18th, 2008 |
| Replies: 24 Views: 9,282 thanks and let me check if any problem i will reply soon ? |
Forum: JavaScript / DHTML / AJAX Jan 17th, 2008 |
| Replies: 24 Views: 9,282 Actually the problem may be in this code
if(xmlHttp.status == 200)
{
var textout = xmlHttp.responseText;
try
{
var x= new DOMParser().parseFromString(textout, 'text/xml');... |
Forum: JavaScript / DHTML / AJAX Jan 7th, 2008 |
| Replies: 24 Views: 9,282 Hi friends,
i have a problem in ajax.The code will get values when i use IE but it doesnt work with mozilla browser.It showing the alert message ? I am adding the code along with this.Expecting... |
Forum: Java Jan 7th, 2008 |
| Replies: 20 Views: 13,227 |
Forum: Java Apr 20th, 2006 |
| Replies: 20 Views: 13,227 i need some help for my project and not for english |
Forum: Java Apr 20th, 2006 |
| Replies: 20 Views: 13,227 what is this i don't understand what are you trying to say ? |
Forum: Java Apr 20th, 2006 |
| Replies: 20 Views: 13,227 hello friends
my project name is e-auction
can u give me some points regarding this project
i would like to do this project using j2ee as front end and oracle as back end |
Forum: Java Apr 19th, 2006 |
| Replies: 20 Views: 13,227 hai friends i got a project title but can u help me the details of dat project |
Forum: Java Mar 19th, 2006 |
| Replies: 20 Views: 13,227 hai friends i want a project title in j2ee to do my project plz help me :sad: |