Datagrid - HyperlinkColumn and variables

J

Jl_G_0

Hey all, I need to add a hyperlinkcolumn to a datagrid, but the path
(DataNavigateUrlFormatString) is dynamic, since the page lists files in
directories. The folder name to list is stored in a variable (strPath).
The code that I tried is: DataNavigateUrlFormatString='<%#strPath
%>/{0}'

But it says: "Databinding expressions are only supported on objects
that have a DataBinding event"

Anyway I could place my variable on that field, using another way, or
what Im doing wrong ? I searched for this problem and find some info
about TemplateColumns too, can I insert variables onto it ?

Thanks for helping.
 
K

Ken Cox [Microsoft MVP]

Hi,

I'd use a template column and a helper function to add the variable. Here's
a little sample below.

Let us know if this helps?

Ken
Microsoft MVP [ASP.NET]

<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
Dim strPath As String = "mypath"
Protected Sub Page_Load _
(ByVal sender As Object, _
ByVal e As System.EventArgs)

If Not IsPostBack Then
datagrid1.DataSource = CreateDataSource()
datagrid1.DataBind()
End If
End Sub

Function AddPath(ByVal inString As String) As String
Return strPath & "\" & inString
End Function

Function CreateDataSource() As Data.DataTable
Dim dt As New Data.DataTable
Dim dr As Data.DataRow
dt.Columns.Add(New Data.DataColumn _
("IntegerValue", GetType(Int32)))
dt.Columns.Add(New Data.DataColumn _
("strFile", GetType(String)))
dt.Columns.Add(New Data.DataColumn _
("CurrencyValue", GetType(Double)))
dt.Columns.Add(New Data.DataColumn _
("Boolean", GetType(Boolean)))
Dim i As Integer
For i = 0 To 5
dr = dt.NewRow()
dr(0) = i
dr(1) = "file" + i.ToString() & ".aspx"
dr(2) = 1.23 * (i + 1)
dr(3) = (i = 4)
dt.Rows.Add(dr)
Next i
Return dt
End Function
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Helper Function</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:datagrid id="datagrid1" runat="server" autogeneratecolumns="False">
<columns>
<asp:templatecolumn headertext="File">
<itemtemplate>
<asp:hyperlink
runat="server"
navigateurl='<%# AddPath(DataBinder.Eval(Container,
"DataItem.strFile")) %>'
text='<%# DataBinder.Eval(Container, "DataItem.strFile")
%>'>
</asp:hyperlink>
</itemtemplate>
</asp:templatecolumn>
</columns>
</asp:datagrid>
</div>
</form>
</body>
</html>
 
J

Jl_G_0

thanks for helping. This helped me out because I learned to use a
template column, but im having a hard time to convert my code that
lists files on a folder using a DataGrid:

strDirector = New DirectoryInfo(Server.MapPath(strPath))
'this part works fine
gridFiles.DataSource = strDirector.GetFiles("*" & strFilter & "*")
'I can filter the files I want to show
gridFiles.DataBind()
' then I bind the data to the grid

Since I have the files on the DataGrid (gridFiles), I have one
HyperlinkColumn that creates one link to each file, and then I can
access it.

I just need to configure the path so when I click the link it really
opens the file, I can't hardcode the path because since I only have one
page, it 'should' use a variable to set the path.

Right now im trying to create a template column inside my datagrid,
hope Im doing the right thing.

thks again for showing me how to use template columns.
 

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

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top