Click here to Skip to main content
15,889,034 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can i get emailid from my gmail when i click a link inside my gmail inbox for my asp.net page.please help any body
Posted
Comments
Suraj S Koneri 19-Nov-12 4:23am    
Not clear, within your ASP.NET page gmail inbox will be there? Where this link will be present? use update question to improve requirement
daminjohny 19-Nov-12 4:31am    
thanks for the reply suraj, i logged in normal gmail, after that i have a asp page url in my inbox, when i clik the link just i want to get the gmailid from gmail

1 solution

Use
<a href="mailto:example@website.com">email</a>

Code Example:
nMail.Body = "Description " + txtdescription.Text + "<br />Reply to (click here): " + "<a href='mailto:" + txtemail.Text + "'>" + txtemail.Text + "</a>");


Hope that helps!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900