I currently have a datagrid where a free form columnC lists the filenames stored on the server. Below the datagrid there are links to each file where it will open up for users to downlad. The free form column filenames are created by databinding from ColumnA and ColumnB:
ColumnA ColumnB ColumnC(textbox freeform)
1 A 1_A.pdf
2 B 2_B.pdf
Below datagrid users click on links
<a href="1_A.pdf>1_A.pdf</a>
...
It's becoming a hassle to look through the list to find the file to open, as the list is getting very long. Is it possible to add a hyperlink column to a datagrid where the link will open pdf files saved on the server. For example:
ColumnA ColumnB ColumnC(hyperlink)
1 A 1_A.pdf
2 B 2_B.pdf
So if I clicked on a link in 1_A.pdf it will open up the files directly. I've tried modifiying the DataNavigateUrlFormatString by binding data for ColumnA and ColumnB but it always directs to a url page.
Is what i'm trying to do possible in a datagrid. Any help would be appreciated.
ColumnA ColumnB ColumnC(textbox freeform)
1 A 1_A.pdf
2 B 2_B.pdf
Below datagrid users click on links
<a href="1_A.pdf>1_A.pdf</a>
...
It's becoming a hassle to look through the list to find the file to open, as the list is getting very long. Is it possible to add a hyperlink column to a datagrid where the link will open pdf files saved on the server. For example:
ColumnA ColumnB ColumnC(hyperlink)
1 A 1_A.pdf
2 B 2_B.pdf
So if I clicked on a link in 1_A.pdf it will open up the files directly. I've tried modifiying the DataNavigateUrlFormatString by binding data for ColumnA and ColumnB but it always directs to a url page.
Is what i'm trying to do possible in a datagrid. Any help would be appreciated.