|
ok, that worked.
but now:
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: BC30108: 'FileInfo' is a type and cannot be used as an expression.
Source Error:
Line 18: <asp:TemplateColumn HeaderText="File Name">
Line 19: <ItemTemplate>
Line 20: <a href="<%# ((FileInfo)Container.DataItem).Name %>"><%# ((FileInfo)Container.DataItem).Name %> </a>
Line 21: </ItemTemplate>
and then i suppose i want to change it to look something like(without the port number (after testing)):
<ahref="http://localhost:3397/intranet/minutes/<%# ((FileInfo)Container.DataItem).Name %>"><%# ((FileInfo)Container.DataItem).Name %> </a>
__________________
regards,
Pauly.
The true sign of intelligence is not knowledge but imagination. (Albert Einstein)
Be who you are and say what you feel,
because those who mind don't matter and those who matter don't mind. (Dr. Seuss)
Last edited by paulwebmaster; 08-18-2006 at 11:03 AM..
|