Forum: JSP Jul 29th, 2008 |
| Replies: 7 Views: 1,882 Thanks for your answer.
Can i mask the sender if am sending through GSM modem. i.e i want a name "klnce" as the sender name instead of mobile number.
Thanks in advance. |
Forum: JSP Jul 28th, 2008 |
| Replies: 7 Views: 1,882 Thanks for the reply.
Can u tell me approximate price of GSM modem. I searched internet lot of models are available. Do you any Brand in Mind. ? Suggest me i have to buy
Thanks in advance |
Forum: JSP Jul 24th, 2008 |
| Replies: 7 Views: 1,882 Ok fine. I need the code to send SMS. Can i actually send the sms for free or do i need to signup any contract with sms providers for this. |
Forum: JSP Jul 23rd, 2008 |
| Replies: 4 Views: 3,072 If the problem is solved, please close the thread. Else see this
http://jspcodes.elementfx.com/codesnippets/viewsnippets.php?id=3&category=1 |
Forum: JSP Jul 23rd, 2008 |
| Replies: 7 Views: 1,882 I want to send an SMS from my server i.e from my webpage. I need to know do i need any device related to this or can it be done with programming. Is SMPP is a protocol like SMTP or SMPP is a... |
Forum: JSP Jul 23rd, 2008 |
| Replies: 4 Views: 1,074 AJAX Response XML can also be used i think, but i am not sure. I have done for getting an XML remotely.
For more codes, go to
<URL SNIPPED> |
Forum: JSP Jul 23rd, 2008 |
| Replies: 3 Views: 957 The best way is AJAX. But if you are trying with some static content, you may use DOM....document.getElementById("").innerHTML="<b>http://jspcodes.elementfx.com</b>": |
Forum: JSP Jul 23rd, 2008 |
| Replies: 4 Views: 2,330 see this page
<URL SNIPPED> |
Forum: JSP Jul 23rd, 2008 |
| Replies: 1 Views: 1,920 Modify query like this.
SELECT *,count(questionid) as count FROM questionbank where questionid='"+ID group by questionid
If you want that count to be executed as different query, use different... |
Forum: JSP Jul 23rd, 2008 |
| Replies: 2 Views: 1,523 query="select * from login where username='"+username+"'and usertype="+usertype+"";
ps=con.prepareStatement(query);
rs=ps.executeQuery();
while (rs.next())
{
if... |
Forum: JSP Jul 23rd, 2008 |
| Replies: 4 Views: 1,120 This sample code connects from DB2 to WSAD .
<URL REMOVED> |
Forum: JSP Jul 23rd, 2008 |
| Replies: 5 Views: 5,924 This page has code to send mail from GMail SMTP. Copy the code and run it.
If necessary add some concatenation operator.
... |