Hi,
I have an arraylist of .jpgs and i am trying to rename the items in the array. i want to drop the .jpg of each item. NB each item name is unique.
However i keep getting a message that the array items are readonly.
In the below code - i can write out the names without the .jpg part. how do i make this permament.
thanks for all help...
------------------------------------------------
For Each fi As FileInfo In FilesArrayList
Response.Write( fi.Name.Replace (".jpg", ""))
Next
I have an arraylist of .jpgs and i am trying to rename the items in the array. i want to drop the .jpg of each item. NB each item name is unique.
However i keep getting a message that the array items are readonly.
In the below code - i can write out the names without the .jpg part. how do i make this permament.
thanks for all help...
------------------------------------------------
For Each fi As FileInfo In FilesArrayList
Response.Write( fi.Name.Replace (".jpg", ""))
Next
Comment