when i press my gridView on e-mail column - how to sent to this person ?
-
hi i have gridView that has column that contain e-mail on my web-form. when i press this cell - how to send mail (througt the client mail) i try to add hyperlink column to the gridview - but not working how to do it ? thanks
Gali1978 wrote:
when i press this cell - how to send mail (througt the client mail) i try to add hyperlink column to the gridview - but not working how to do it ?
What is not working ? Are you getting any error ? What code you have written ?
Cheers ! Abhijit Jana | My Blog | @Twitter | Daily .Net Tips
-
hi i have gridView that has column that contain e-mail on my web-form. when i press this cell - how to send mail (througt the client mail) i try to add hyperlink column to the gridview - but not working how to do it ? thanks
If you write out the email column in the following format
[Send email](mailto:user@domain.com)
it will send the email using the default email client. But, that is not recommended way of doing it. For starters, since the email is exposed, it can be harvested by bots easily. Instead handle it at the back-end or use some email address obfuscation javascript code.Yusuf May I help you?
-
hi i have gridView that has column that contain e-mail on my web-form. when i press this cell - how to send mail (througt the client mail) i try to add hyperlink column to the gridview - but not working how to do it ? thanks
have you tried mailto:address?