View Single Post
  #6 (permalink)  
Old 04-28-2008, 10:00 AM
Eranga's Avatar
Eranga Eranga is offline
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 2,338
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
How did you handle the client request in the server, wise versa? Did you use any http response codes there? Seems to me it's not. Why I say is, if you use them easily you can send messages through the response data part.

By the way this is not a good choice pal, found it at the Client.

Code:
if (sendText != "");
In your application it's fine. But it is not legal. Legal not says that it is incorrect. And also you have empty body in the if loop. You have added ; at the end.

Do it as follows.

Code:
if (!sendText.isEmpty())
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Has someone helped you? Then you can
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
their helpful post.

Want to make your IDE the best?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Reply With Quote