RACF - History
<%
infoWithAbbr = "({1} ";
infoWithoutAbbr = "({0} ";
switch("pdf"){
case "pdf":
infoText = String.Format(infoWithAbbr, "Portable Document Format", "PDF");
break;
case "archive":
infoText = String.Format(infoWithAbbr, "Compressed Data", "ZIP");
break;
case "excel":
infoText = String.Format(infoWithoutAbbr, "Excel");
break;
case "html":
infoText = String.Format(infoWithAbbr, "Hypertext Markup Language", "HTML");
break;
case "image":
infoText = String.Format(infoWithoutAbbr, "Image");
break;
case "media":
infoText = String.Format(infoWithoutAbbr, "Media");
break;
case "powerpoint":
infoText = String.Format(infoWithoutAbbr, "PowerPoint");
break;
case "word":
infoText = String.Format(infoWithoutAbbr, "Word");
break;
case "rtf":
infoText = String.Format(infoWithAbbr, "Rich Text Document", "RTF");
break;
case "txt":
infoText = String.Format(infoWithAbbr, "Text", "TXT");
break;
}
%>
<% = infoText %>
67.74 kb)