D DBC User Dec 26, 2006 #1 I would like to know is there a way to I can do the same thing as 'mailto:' to in web forms? Thanks.
L Laurent Bugnion Dec 26, 2006 #2 Hi, DBC said: I would like to know is there a way to I can do the same thing as 'mailto:' to in web forms? Thanks. Click to expand... You can use a LinkLabel, and then handle the "LinkClicked" event with the following code: Process mailto = new Process(); mailto.StartInfo.FileName = "mailto:[email protected]"; mailto.Start(); HTH, Laurent
Hi, DBC said: I would like to know is there a way to I can do the same thing as 'mailto:' to in web forms? Thanks. Click to expand... You can use a LinkLabel, and then handle the "LinkClicked" event with the following code: Process mailto = new Process(); mailto.StartInfo.FileName = "mailto:[email protected]"; mailto.Start(); HTH, Laurent
D DBC User Dec 26, 2006 #3 Laurent said: Hi, You can use a LinkLabel, and then handle the "LinkClicked" event with the following code: Process mailto = new Process(); mailto.StartInfo.FileName = "mailto:[email protected]"; mailto.Start(); HTH, Laurent -- Laurent Bugnion, GalaSoft Software engineering: http://www.galasoft-LB.ch PhotoAlbum: http://www.galasoft-LB.ch/pictures Support children in Calcutta: http://www.calcutta-espoir.ch Click to expand... Thanks.
Laurent said: Hi, You can use a LinkLabel, and then handle the "LinkClicked" event with the following code: Process mailto = new Process(); mailto.StartInfo.FileName = "mailto:[email protected]"; mailto.Start(); HTH, Laurent -- Laurent Bugnion, GalaSoft Software engineering: http://www.galasoft-LB.ch PhotoAlbum: http://www.galasoft-LB.ch/pictures Support children in Calcutta: http://www.calcutta-espoir.ch Click to expand... Thanks.