Class used to fetch the blocked file is :- WebApplication
public static string getBlockedFileExtensions(char chrSeperator)
{
Collection
StringBuilder sb = new StringBuilder();
foreach (string strExt in collBlockedFile)
{
sb.Append(strExt);
sb.Append(chrSeperator);
}
return sb.ToString();
}
No comments:
Post a Comment