Array list of attributes
Messages   Related Types
This message was discovered on ASPFriends.com 'ngfx-io' list.
Responses highlighted in red are from those people who are likely to be able to contribute good, authoratitive information to this discussion. They include Microsoft employees, MVP's and others who IMHO contribute well to these kinds of discussions.

Carlos Magalhaes
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Dus-ascii">
<META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
5.5.2652.35">
<TITLE>Array list of attributes</TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=3D2>Hi all,</FONT>
</P>

<P><FONT SIZE=3D2>I was helped by Mitch with this array list that is =
bound to a data grid now here is the array list code</FONT>
</P>
<BR>

<P><FONT SIZE=3D2>     files =3D New =
ArrayList()</FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; Dim di As New DirectoryInfo(Uploaddir) 'uploaddir is declared as a =
string and it is the path to the file</FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; Dim fi As FileInfo</FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; For Each fi In di.GetFiles()</FONT>
</P>

<P><FONT =
SIZE=3D2>          &nb=
sp;     files.Add(New FileInfo(fi.Name))</FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp;     files.Add(New FileInfo(fi.Length)))</FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp;    </FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; Next</FONT>
</P>

<P><FONT =
SIZE=3D2>          &nb=
sp; Me.Files.DataSource =3D files</FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; Me.Files.DataBind()</FONT>
<BR><FONT SIZE=3D2>        End =
If</FONT>
</P>

<P><FONT SIZE=3D2>And here is the HTML for the grid:</FONT>
</P>

<P><FONT SIZE=3D2><asp:BoundColumn DataField=3D"Name" =
HeaderText=3D"Name"></asp:BoundColumn></FONT>
<BR>        =
        =
        =
        =
        <FONT =
SIZE=3D2><asp:BoundColumn DataField=3D"Length" =
HeaderText=3D"Created"></asp:BoundColumn></FONT>
<BR>        =
        =
        =
        =
        <FONT =
SIZE=3D2><asp:BoundColumn DataField=3D"LastWriteTime" =
HeaderText=3D"Modified"></asp:BoundColumn></FONT></P>=

<P>        =
        =
        =
        =
        <FONT =
SIZE=3D2><asp:BoundColumn DataField=3D"LastAccessTime" =
HeaderText=3D"Accessed"></asp:BoundColumn></FONT></P>=

<P><FONT SIZE=3D2>Now what I cant get to do is what if I want Created =
time to be length of the file and I want modified to be the type of =
file how can I adjust that right now I am getting can not add file =
length 8026 (but if cant find it how does it know the exact length of =
the file)???</FONT></P>

<P><FONT SIZE=3D2>And I do have perm to the dir using =
impersonation.</FONT>
</P>
<BR>

<P><FONT SIZE=3D2>Thank you </FONT>
</P>

<P><FONT SIZE=3D2>Carlos</FONT>
</P>

</BODY>
</HTML>

-------------------------------------------------------------
This email and any files transmitted are
confidential and intended solely for the
use of the individual or entity to which
they are addressed, whose privacy
should be respected. Any views or
opinions are solely those of the author
and do not necessarily represent those
of the Trencor Group, or any of its
representatives, unless specifically
stated.

Email transmission cannot be guaranteed
to be secure, error free or without virus
contamination. The sender therefore
accepts no liability for any errors or
omissions in the contents of this message,
nor for any virus infection that might result
from opening this message. Trencor is not
responsible in the event of any third party
interception of this email.

If you have received this email in error please notify
Click here to reveal e-mail address For more information about
Trencor, visit www.trencor.net <http://www.trencor.net>

Reply to this message...
 
    
Mitch Denny (VIP)
Carlos,

Change the grid to this:

    <asp:dataGrid
autoGenerateColumns="false"
id="Files"
runAt="server">

<columns>

<asp:BoundColumn DataField="Name" HeaderText="Name" />

<asp:BoundColumn DataField="Extension" HeaderText="Extension"
/>

<asp:BoundColumn DataField="Length" HeaderText="Size" />

</columns>

</asp:dataGrid>

You can probably see the pattern now, each bound
column corresponds to a property on the FileInfo
class, ASP.NET does this binding for you, you just
tell it what parts you want displayed.

Hope this helps.

----------------------------------------
- Mitch Denny
- Click here to reveal e-mail address
- +61 (414) 610-141
-

-----Original Message-----
From: Carlos Magalhaes [mailto:Click here to reveal e-mail address]
Sent: Thursday, 6 June 2002 23:01
To: ngfx-io
Subject: [ngfx-io] Array list of attributes

Hi all,
I was helped by Mitch with this array list that is bound to a data grid
now here is the array list code

files = New ArrayList()
Dim di As New DirectoryInfo(Uploaddir) 'uploaddir is
declared as a string and it is the path to the file
Dim fi As FileInfo
For Each fi In di.GetFiles()
files.Add(New FileInfo(fi.Name))
files.Add(New FileInfo(fi.Length)))

Next
Me.Files.DataSource = files
Me.Files.DataBind()
End If
And here is the HTML for the grid:
<asp:BoundColumn DataField="Name" HeaderText="Name"></asp:BoundColumn>
<asp:BoundColumn
DataField="Length" HeaderText="Created"></asp:BoundColumn>
<asp:BoundColumn
DataField="LastWriteTime" HeaderText="Modified"></asp:BoundColumn>
<asp:BoundColumn
DataField="LastAccessTime" HeaderText="Accessed"></asp:BoundColumn>
Now what I cant get to do is what if I want Created time to be length of
the file and I want modified to be the type of file how can I adjust
that right now I am getting can not add file length 8026 (but if cant
find it how does it know the exact length of the file)???
And I do have perm to the dir using impersonation.

Thank you
Carlos
| [ngfx-io] member Click here to reveal e-mail address = YOUR ID |
http://www.aspfriends.com/aspfriends/ngfx-io.asp = JOIN/QUIT
------------------------------------------------------------- This email
and any files transmitted are confidential and intended solely for the
use of the individual or entity to which they are addressed, whose
privacy should be respected. Any views or opinions are solely those of
the author and do not necessarily represent those of the Trencor Group,
or any of its representatives, unless specifically stated. Email
transmission cannot be guaranteed to be secure, error free or without
virus contamination. The sender therefore accepts no liability for any
errors or omissions in the contents of this message, nor for any virus
infection that might result from opening this message. Trencor is not
responsible in the event of any third party interception of this email.
If you have received this email in error please notify
Click here to reveal e-mail address For more information about Trencor, visit
www.trencor.net

Reply to this message...
 
    
Carlos Magalhaes
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Dus-ascii">
<META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
5.5.2652.35">
<TITLE>RE: [ngfx-io] RE: Array list of attributes</TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=3D2>Mitch</FONT>
</P>

<P><FONT SIZE=3D2>I figured that one out ( stuooopid me) all I did was =
set auto generate columns to true it returned all the values then check =
what they where using and used those values and came out with what you =
have below!</FONT></P>

<P><FONT SIZE=3D2>I know that's the long way!</FONT>
</P>

<P><FONT SIZE=3D2>Ok now for something different.</FONT>
</P>

<P><FONT SIZE=3D2>Jon showed us the cool Getfilewitoutextention =
property of the path class now I have tried different methods and I =
know that it is doing what it is suppose to but I can add it to the =
array list so that it adds it to the datagrid here is what I have tried =
so far (this is not all the code just some code I tried and get =
errors.</FONT></P>

<P>        =
        <FONT SIZE=3D2>Dim fi As =
FileInfo   </FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; For Each fi In di.GetFiles()</FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp;     Dim justfile As String</FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp;     justfile =3D justfile & fi.Name</FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp;     Dim FiName As String =3D =
Path.GetFileNameWithoutExtension(justfile) ' this works as I set a trap =
here and it prints out the correct name without the =
extension.</FONT></P>

<P><FONT =
SIZE=3D2>          &nb=
sp;     files.Add(New FileInfo(fi.FullName))</FONT>
<BR>        =
        <FONT =
SIZE=3D2>    files.add(FiName)  ' This is where it =
is bombing out .......</FONT>
</P>

<P><FONT =
SIZE=3D2>          &nb=
sp;     </FONT>
</P>

<P><FONT =
SIZE=3D2>          &nb=
sp; Next</FONT>
</P>

<P><FONT =
SIZE=3D2>          &nb=
sp; Me.Files.DataSource =3D files</FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; Me.Files.DataBind()</FONT>
</P>
<BR>

<P><FONT SIZE=3D2>How can I change that to reflect the name without the =
extension as an additional column in the current Data grid....</FONT>
</P>

<P><FONT SIZE=3D2>Thanks</FONT>
</P>

<P><FONT SIZE=3D2>Carlos</FONT>
</P>

<P><FONT SIZE=3D2>-----Original Message-----</FONT>
<BR><FONT SIZE=3D2>From: Mitch Denny [<A =
HREF=3D"mailto:Click here to reveal e-mail address">mailto:Click here to reveal e-mail address</=
A>] </FONT>
<BR><FONT SIZE=3D2>Sent: Friday, June 07, 2002 3:40 AM</FONT>
<BR><FONT SIZE=3D2>To: ngfx-io</FONT>
<BR><FONT SIZE=3D2>Subject: [ngfx-io] RE: Array list of =
attributes</FONT>
</P>

<P><FONT SIZE=3D2>Carlos,</FONT>
</P>

<P><FONT SIZE=3D2>Change the grid to this:</FONT>
</P>

<P>        <FONT =
SIZE=3D2><asp:dataGrid </FONT>
<BR><FONT SIZE=3D2>        =
autoGenerateColumns=3D"false" </FONT>
<BR><FONT SIZE=3D2>        =
id=3D"Files" </FONT>
<BR><FONT SIZE=3D2>        =
runAt=3D"server"> </FONT>
</P>

<P><FONT SIZE=3D2>        =
<columns> </FONT>
</P>

<P><FONT =
SIZE=3D2>          =
<asp:BoundColumn DataField=3D"Name" =
HeaderText=3D"Name" /></FONT>
</P>

<P><FONT =
SIZE=3D2>          =
<asp:BoundColumn DataField=3D"Extension" =
HeaderText=3D"Extension"</FONT>
<BR><FONT SIZE=3D2>/></FONT>
</P>

<P><FONT =
SIZE=3D2>          =
<asp:BoundColumn DataField=3D"Length" =
HeaderText=3D"Size" /></FONT>
</P>

<P><FONT SIZE=3D2>        =
</columns> </FONT>
</P>

<P><FONT SIZE=3D2>      =
</asp:dataGrid></FONT>
</P>

<P><FONT SIZE=3D2>You can probably see the pattern now, each =
bound</FONT>
<BR><FONT SIZE=3D2>column corresponds to a property on the =
FileInfo</FONT>
<BR><FONT SIZE=3D2>class, ASP.NET does this binding for you, you =
just</FONT>
<BR><FONT SIZE=3D2>tell it what parts you want displayed.</FONT>
</P>

<P><FONT SIZE=3D2>Hope this helps.</FONT>
</P>

<P><FONT SIZE=3D2>----------------------------------------</FONT>
<BR><FONT SIZE=3D2>- Mitch Denny</FONT>
<BR><FONT SIZE=3D2>- Click here to reveal e-mail address</FONT>
<BR><FONT SIZE=3D2>- +61 (414) 610-141</FONT>
<BR><FONT SIZE=3D2>-</FONT>
</P>

<P><FONT SIZE=3D2>-----Original Message-----</FONT>
<BR><FONT SIZE=3D2>From: Carlos Magalhaes [<A =
HREF=3D"mailto:Click here to reveal e-mail address">mailto:Click here to reveal e-mail address</A>] =
</FONT>
<BR><FONT SIZE=3D2>Sent: Thursday, 6 June 2002 23:01</FONT>
<BR><FONT SIZE=3D2>To: ngfx-io</FONT>
<BR><FONT SIZE=3D2>Subject: [ngfx-io] Array list of attributes</FONT>
</P>
<BR>

<P><FONT SIZE=3D2>Hi all, </FONT>
<BR><FONT SIZE=3D2>I was helped by Mitch with this array list that is =
bound to a data grid</FONT>
<BR><FONT SIZE=3D2>now here is the array list code </FONT>
</P>
<BR>

<P><FONT SIZE=3D2>     files =3D New ArrayList() =
</FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; Dim di As New DirectoryInfo(Uploaddir) 'uploaddir is</FONT>
<BR><FONT SIZE=3D2>declared as a string and it is the path to the file =
</FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; Dim fi As FileInfo </FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; For Each fi In di.GetFiles() </FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp;     files.Add(New FileInfo(fi.Name)) </FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp;     files.Add(New FileInfo(fi.Length))) </FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp;    </FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; Next </FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; Me.Files.DataSource =3D files </FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp; Me.Files.DataBind() </FONT>
<BR><FONT SIZE=3D2>        End If =
</FONT>
<BR><FONT SIZE=3D2>And here is the HTML for the grid: </FONT>
<BR><FONT SIZE=3D2><asp:BoundColumn DataField=3D"Name" =
HeaderText=3D"Name"></asp:BoundColumn> </FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp;           &nb=
sp;           &nb=
sp;     <asp:BoundColumn</FONT>
<BR><FONT SIZE=3D2>DataField=3D"Length" =
HeaderText=3D"Created"></asp:BoundColumn> </FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp;           &nb=
sp;           &nb=
sp;     <asp:BoundColumn</FONT>
<BR><FONT SIZE=3D2>DataField=3D"LastWriteTime" =
HeaderText=3D"Modified"></asp:BoundColumn></FONT>
<BR><FONT =
SIZE=3D2>          &nb=
sp;           &nb=
sp;           &nb=
sp;     <asp:BoundColumn</FONT>
<BR><FONT SIZE=3D2>DataField=3D"LastAccessTime" =
HeaderText=3D"Accessed"></asp:BoundColumn></FONT>
<BR><FONT SIZE=3D2>Now what I cant get to do is what if I want Created =
time to be length of</FONT>
<BR><FONT SIZE=3D2>the file and I want modified to be the type of file =
how can I adjust</FONT>
<BR><FONT SIZE=3D2>that right now I am getting can not add file length =
8026 (but if cant</FONT>
<BR><FONT SIZE=3D2>find it how does it know the exact length of the =
file)???</FONT>
<BR><FONT SIZE=3D2>And I do have perm to the dir using impersonation. =
</FONT>
</P>
<BR>

<P><FONT SIZE=3D2>Thank you </FONT>
<BR><FONT SIZE=3D2>Carlos </FONT>
<BR><FONT SIZE=3D2>| [ngfx-io] member Click here to reveal e-mail address =3D YOUR =
ID |</FONT>
<BR><FONT SIZE=3D2><A =
HREF=3D"http://www.aspfriends.com/aspfriends/ngfx-io.asp"" target="_blank">http://www.aspfriends.com/aspfriends/ngfx-io.asp"; =
TARGET=3D"_blank">http://www.aspfriends.com/aspfriends/ngfx-io.asp</A> =
=3D JOIN/QUIT</FONT>
<BR><FONT =
SIZE=3D2>------------------------------------------------------------- =
This email</FONT>
<BR><FONT SIZE=3D2>and any files transmitted are confidential and =
intended solely for the</FONT>
<BR><FONT SIZE=3D2>use of the individual or entity to which they are =
addressed, whose</FONT>
<BR><FONT SIZE=3D2>privacy should be respected. Any views or opinions =
are solely those of</FONT>
<BR><FONT SIZE=3D2>the author and do not necessarily represent those of =
the Trencor Group,</FONT>
<BR><FONT SIZE=3D2>or any of its representatives, unless specifically =
stated. Email</FONT>
<BR><FONT SIZE=3D2>transmission cannot be guaranteed to be secure, =
error free or without</FONT>
<BR><FONT SIZE=3D2>virus contamination. The sender therefore accepts no =
liability for any</FONT>
<BR><FONT SIZE=3D2>errors or omissions in the contents of this message, =
nor for any virus</FONT>
<BR><FONT SIZE=3D2>infection that might result from opening this =
message. Trencor is not</FONT>
<BR><FONT SIZE=3D2>responsible in the event of any third party =
interception of this email.</FONT>
<BR><FONT SIZE=3D2>If you have received this email in error please =
notify</FONT>
<BR><FONT SIZE=3D2>Click here to reveal e-mail address For more information about =
Trencor, visit</FONT>
<BR><FONT SIZE=3D2>www.trencor.net </FONT>
</P>
<BR>

<P><FONT SIZE=3D2>| [ngfx-io] member Click here to reveal e-mail address =3D YOUR =
ID</FONT>
<BR><FONT SIZE=3D2>| <A =
HREF=3D"http://www.aspfriends.com/aspfriends/ngfx-io.asp"" target="_blank">http://www.aspfriends.com/aspfriends/ngfx-io.asp"; =
TARGET=3D"_blank">http://www.aspfriends.com/aspfriends/ngfx-io.asp</A> =
=3D JOIN/QUIT</FONT>
</P>

</BODY>
</HTML>

-------------------------------------------------------------
This email and any files transmitted are
confidential and intended solely for the
use of the individual or entity to which
they are addressed, whose privacy
should be respected. Any views or
opinions are solely those of the author
and do not necessarily represent those
of the Trencor Group, or any of its
representatives, unless specifically
stated.

Email transmission cannot be guaranteed
to be secure, error free or without virus
contamination. The sender therefore
accepts no liability for any errors or
omissions in the contents of this message,
nor for any virus infection that might result
from opening this message. Trencor is not
responsible in the event of any third party
interception of this email.

If you have received this email in error please notify
Click here to reveal e-mail address For more information about
Trencor, visit www.trencor.net <http://www.trencor.net>

Reply to this message...
 
    
Mitch Denny (VIP)
Carlos,

In your VB.NET code, do you have Option Strict set? The
call to "add" should be "Add", thats all I can think of
that would be causing the throw there. Feel free to post
all your (complete) code, then we can all try it out
locally without guess what the rest of the ASP.NET
page looks like.

----------------------------------------
- Mitch Denny
- Click here to reveal e-mail address
- +61 (414) 610-141
-

-----Original Message-----
From: Carlos Magalhaes [mailto:Click here to reveal e-mail address]
Sent: Friday, 7 June 2002 19:50
To: ngfx-io
Subject: [ngfx-io] RE: Array list of attributes

Mitch
I figured that one out ( stuooopid me) all I did was set auto generate
columns to true it returned all the values then check what they where
using and used those values and came out with what you have below!
I know that's the long way!
Ok now for something different.
Jon showed us the cool Getfilewitoutextention property of the path class
now I have tried different methods and I know that it is doing what it
is suppose to but I can add it to the array list so that it adds it to
the datagrid here is what I have tried so far (this is not all the code
just some code I tried and get errors.
Dim fi As FileInfo
For Each fi In di.GetFiles()
Dim justfile As String
justfile = justfile & fi.Name
Dim FiName As String =
Path.GetFileNameWithoutExtension(justfile) ' this works as I set a trap
here and it prints out the correct name without the extension.
files.Add(New FileInfo(fi.FullName))
files.add(FiName) ' This is where it is bombing out
.......

Next
Me.Files.DataSource = files
Me.Files.DataBind()

How can I change that to reflect the name without the extension as an
additional column in the current Data grid....
Thanks
Carlos
-----Original Message-----
From: Mitch Denny [mailto:Click here to reveal e-mail address]
Sent: Friday, June 07, 2002 3:40 AM
To: ngfx-io
Subject: [ngfx-io] RE: Array list of attributes
Carlos,
Change the grid to this:
<asp:dataGrid
autoGenerateColumns="false"
id="Files"
runAt="server">
<columns>
<asp:BoundColumn DataField="Name" HeaderText="Name" />
<asp:BoundColumn DataField="Extension" HeaderText="Extension"
/>
<asp:BoundColumn DataField="Length" HeaderText="Size" />
</columns>
</asp:dataGrid>
You can probably see the pattern now, each bound
column corresponds to a property on the FileInfo
class, ASP.NET does this binding for you, you just
tell it what parts you want displayed.
Hope this helps.
----------------------------------------
- Mitch Denny
- Click here to reveal e-mail address
- +61 (414) 610-141
-
-----Original Message-----
From: Carlos Magalhaes [mailto:Click here to reveal e-mail address]
Sent: Thursday, 6 June 2002 23:01
To: ngfx-io
Subject: [ngfx-io] Array list of attributes

Hi all,
I was helped by Mitch with this array list that is bound to a data grid
now here is the array list code

files = New ArrayList()
Dim di As New DirectoryInfo(Uploaddir) 'uploaddir is
declared as a string and it is the path to the file
Dim fi As FileInfo
For Each fi In di.GetFiles()
files.Add(New FileInfo(fi.Name))
files.Add(New FileInfo(fi.Length)))

Next
Me.Files.DataSource = files
Me.Files.DataBind()
End If
And here is the HTML for the grid:
<asp:BoundColumn DataField="Name" HeaderText="Name"></asp:BoundColumn>
<asp:BoundColumn
DataField="Length" HeaderText="Created"></asp:BoundColumn>
<asp:BoundColumn
DataField="LastWriteTime" HeaderText="Modified"></asp:BoundColumn>
<asp:BoundColumn
DataField="LastAccessTime" HeaderText="Accessed"></asp:BoundColumn>
Now what I cant get to do is what if I want Created time to be length of

the file and I want modified to be the type of file how can I adjust
that right now I am getting can not add file length 8026 (but if cant
find it how does it know the exact length of the file)???
And I do have perm to the dir using impersonation.

Thank you
Carlos
| [ngfx-io] member Click here to reveal e-mail address = YOUR ID |
http://www.aspfriends.com/aspfriends/ngfx-io.asp = JOIN/QUIT
------------------------------------------------------------- This email

and any files transmitted are confidential and intended solely for the
use of the individual or entity to which they are addressed, whose
privacy should be respected. Any views or opinions are solely those of
the author and do not necessarily represent those of the Trencor Group,
or any of its representatives, unless specifically stated. Email
transmission cannot be guaranteed to be secure, error free or without
virus contamination. The sender therefore accepts no liability for any
errors or omissions in the contents of this message, nor for any virus
infection that might result from opening this message. Trencor is not
responsible in the event of any third party interception of this email.
If you have received this email in error please notify
Click here to reveal e-mail address For more information about Trencor, visit
www.trencor.net

| [ngfx-io] member Click here to reveal e-mail address = YOUR ID
| http://www.aspfriends.com/aspfriends/ngfx-io.asp = JOIN/QUIT
| [ngfx-io] member Click here to reveal e-mail address = YOUR ID |
http://www.aspfriends.com/aspfriends/ngfx-io.asp = JOIN/QUIT
------------------------------------------------------------- This email
and any files transmitted are confidential and intended solely for the
use of the individual or entity to which they are addressed, whose
privacy should be respected. Any views or opinions are solely those of
the author and do not necessarily represent those of the Trencor Group,
or any of its representatives, unless specifically stated. Email
transmission cannot be guaranteed to be secure, error free or without
virus contamination. The sender therefore accepts no liability for any
errors or omissions in the contents of this message, nor for any virus
infection that might result from opening this message. Trencor is not
responsible in the event of any third party interception of this email.
If you have received this email in error please notify
Click here to reveal e-mail address For more information about Trencor, visit
www.trencor.net

Reply to this message...
 
 
System.Collections.ArrayList
System.IO.DirectoryInfo
System.IO.FileInfo
System.IO.Path
System.Web.UI.WebControls.BoundColumn




Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
 
 Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com