I love the finctionality of the program but don't need the Action buttons; Remove File, Browse and Delete. I just want my users to view the file by clicking on the name of the file.
Joel Cruzada
11/27/2007 10:21 AM
I had the same issue. I did not want to have the delete action for all users. To remove all actions, remove the following:
<td nowrap>
<%If virtual<>"" Then%>
<a href="<%=virtual & item.Name%>" target="_blank"><img align=absmiddle border=0 width=11 height=14 src="./images/browse.png" alt="Browse Folder"></a>
<%End If%>
<a href="javascript:Command('RenameFolder', "<%=item.Name%>");"><img align=absmiddle border=0 width=11 height=14 src="./images/rename.png" alt="Rename Folder"></a>
<a href="javascript:Command('DeleteFolder', "<%=item.Name%>");"><img align=absmiddle border=0 width=14 height=14 src="./images/delete.png" alt="Delete Folder"></a>
</td>
Shawn Blue
3/22/2008 4:50 PM
The above code is in the default.asp, and it is around row 488
Shawn Blue
3/22/2008 4:51 PM