Check out the Windows Phone 7 Developer Launch website to learn more about getting a Windows Phone 7 for free.
Click the image below to see details:
Quazi Hasan
"Before God we are all equally wise - and equally foolish." --Albert Einstein
October 11, 2010
July 13, 2010
Sending SMS using HQSMS API in asp.net
To use HQSMS API you need to 1st Register at HQSMS. They will provide you some credit for testing your app. But to send more sms you have to buy credit from them. Below is the code for sending SMS to a user in asp.net. here I'm using System.Net library from asp.net and then obviously HQSMS APIs.
protected void sendButton_Click(object sender, EventArgs e)
{
HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(new Uri("http://www.hqsms.com/api/send.do?username=username&password=md5_password&to=to_phoneNo&message=Please Work!&from=HQRoute"));
HttpWebResponse response = (HttpWebResponse)req.GetResponse();
System.IO.StreamReader strreader = new System.IO.StreamReader(response.GetResponseStream());
string deliver = strreader.ReadToEnd();
Response.Write(deliver);
}
here,
username = username in HQSMS registration
password = passowrd needs to be hashed in MD5. To get a MD5 hash of your password, please go here: https://www.hqsms.com/md5.php
to_phone = destination phone number
from = source phone number or source user.
Done! Pretty easy huh? Leave some comments if you have any questions about it.
protected void sendButton_Click(object sender, EventArgs e)
{
HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(new Uri("http://www.hqsms.com/api/send.do?username=username&password=md5_password&to=to_phoneNo&message=Please Work!&from=HQRoute"));
HttpWebResponse response = (HttpWebResponse)req.GetResponse();
System.IO.StreamReader strreader = new System.IO.StreamReader(response.GetResponseStream());
string deliver = strreader.ReadToEnd();
Response.Write(deliver);
}
here,
username = username in HQSMS registration
password = passowrd needs to be hashed in MD5. To get a MD5 hash of your password, please go here: https://www.hqsms.com/md5.php
to_phone = destination phone number
from = source phone number or source user.
Done! Pretty easy huh? Leave some comments if you have any questions about it.
July 7, 2010
Artwork using GIMP 2.6
Artwork using GIMP 2.6
Recently I have found out that GIMP can be very powerful tool as a image editor if you can config it correctly. My friend Dennis helped to set it up for me. And he also taught me how to do the artworks. In GIMP you can add patterns, tools, textures, Photoshop brushes, plugins, scripts, symbols and can do some really exclusive artworks as I did one above. Give it a try if you want to enjoy your own private time :)
June 19, 2010
Yet Another new site for Undergrad Catalog, 2010 - UT Arlington
May 31, 2010
Uncharted 2 : Among Thieves
Finished playing Uncharted: Drake's Fortune, and now playing Uncharted 2: Among Thieves. Just watch the official trailer of Uncharted 2: Among Thieves and I'm more than 100% sure that you are going to be intrigued by this game too :P
Subscribe to:
Posts (Atom)

