Gridview - hyperlink to an email column

  • Thread starter HRsoft Informática
  • Start date
H

HRsoft Informática

ASP.NET 3.5 / VWD express 2008

Gridview, dynamically created and populated.
All the coluns are created dynamically, like this:

..........................
Dim coluna11 As New BoundField
...............
coluna11.DataField = "s_email"
coluna11.HeaderText = "Email"
coluna11.ItemStyle.Wrap = False

GridHistorico.Columns.Clear()
GridHistorico.Columns.Add(coluna11)
etc....

I need this column, an email, hyperlinked like: mailto:(the content of the
column)

Thanks in advance
 
H

HRsoft Informática

Thanks for your response. But I need to create dynamically, on .VB 2008. I
try this:

Dim coluna11 As New HyperLinkField

coluna11.DataTextField = "s_email"
coluna11.HeaderText = "Email"
coluna11.Text = "<%# Eval('s_Email') %>"
coluna11.NavigateUrl = "<%# Eval('s_Email', 'mailto:{0}') %>"
'coluna11.DataNavigateUrlFields = "s_email"
coluna11.ItemStyle.Wrap = False

With this code, the content of the column change color to hyperlink color (
according to .CSS), but no redirect or link to outlook, etc, ie, nothing
happens.

--
Hércules
HRsoft Informática - Rio de Janeiro - Brasil
http://www.hrsoft.com.br
 
M

miher

Hi,

According to the mentioned blog You can try something like this:

GridView gv = new GridView() { AutoGenerateColumns = false };
Page.Form.Controls.Add(gv);
var list = new[]
{
new {Name = "John Smith", EMail = "(e-mail address removed)"},
new {Name = "John Doe", EMail = "(e-mail address removed)"},
new {Name = "Jane Doe", EMail = "(e-mail address removed)"}
};
BoundField f1 = new BoundField() { DataField = "Name",
HeaderText = "Name" };
TemplateField f2 = new TemplateField();
f2.ItemTemplate = Page.LoadTemplate("EMailTemplate.ascx");
f2.HeaderText = "e-mail";
gv.Columns.Clear();
gv.Columns.Add(f1);
gv.Columns.Add(f2);
gv.DataSource = list;
gv.DataBind();


Also create a web user control EMailTemplate, and put the hyperlink field
into it (see below)
(the Control tag might differ according Your application name)
--------------------------------------- Contents of EMailTemplate.ascx

<%@ Control Language="C#" AutoEventWireup="true"
CodeBehind="EMailTemplate.ascx.cs"
Inherits="YourWebApplication.EMailTemplate" %>

<asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%#
Eval("EMail","mailto:{0}") %>' > <%# Eval("EMail") %> </asp:HyperLink>

Hope You find this useful.
-Zsolt
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,774
Messages
2,569,599
Members
45,165
Latest member
JavierBrak
Top