To be Hunt or To be Hunter…
Are u able to be invisible in Gtalk …..- NO !!!
You can not be, because there is no option.
But you can, Use Gtalk LabEdition - YES !!!!
YOU CAN BE GO TO INVISIBLE MODE .
Download - Gtalk labsedition
Download – Install & Enjoy-
Google Chrome – Launched -Chrome extensions.
Chrome extensions- use extra tools in chrome like IE ,Mozilla and other browsers.
Google Chrome New Face
Best & Unique features in Chrome -
1) Page Rank -with ALEXA Status -Backlinks,whois info etc
2) Bookmark – Google ,PC and other with restore option
3) Dictionary – Click on word with CTRL key & find meaning
4) Translate Any Language
5) Online htmltopdf convertor
6) Open & Save document in Google Docs in All formats
Chrome have unique features.
Check this ,Use this .You will find the fast browsing easily.
Its have everything …..
ASP.NET makes it amazingly simple for you to send e-mails from a Web application or even a Web form.
First of all Create the following things -
1) A .aspx page using 2 Labels and 2 textbox and one Button.
We can use the following code :
——————————————–
using System;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Security.Cryptography;
using System.Xml;
using System.Text;
using System.Net.Mail;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnSend_Click1(object sender, EventArgs e)
{
bool returnedValue = SendingMail(txtfrom.Text, txttext.Text);
if (returnedValue == true)
{
StringBuilder sb = new StringBuilder();
sb.Append(“”);
sb.Append(“alert(‘your mail has been send, we will contact you soon. Thank you.’);”);
sb.Append(“”);
Response.Write(sb.ToString());
}
else
{
txtfrom.Text = “”;
txtfrom.Focus();
}
}
private bool SendingMail(string from, string message)
{
try
{
MailMessage msg = new MailMessage(from, “checkmymail123@gmail.com”);
msg.Subject = “Contact Us”;
msg.Body = “Recieved From: ” + from + ” Message: ” + message;
msg.IsBodyHtml = true;
msg.BodyEncoding = Encoding.UTF32;
msg.Priority = MailPriority.Normal;
SmtpClient client;
client = new SmtpClient();
client.Host = “smtp.gmail.com”;
client.Port = 587;
client.EnableSsl = true;
client.Credentials = new System.Net.NetworkCredential(“checkmymail@gmail.com”, “password”);
client.Send(msg);
return true;
}
catch
{
return false;
}
}
}
————————————————–
This code is very helpful to use the gmail at ur Contact Us page. Means you can create the Contact US page easily.
with Regards
Dinesh Verma
+919718461838
+919896328595
Vermadenish@gmail.com
Welcome to all of you in my wordpress blog
With Regards
Dinesh Verma
Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!