Good Morning. Came across code implemented by someone else and I'm not understanding how the FormCollection is used. Is the FormCollection merely a collection of the controls on the form?
public Email(FormCollection fc)
{
StringBuilder sb = new StringBuilder();
this.fc = fc;
string[] keys = fc.AllKeys;
sb.Append("Category,\"REQUEST\",<br />");
sb.Append("Type,\"TEST EXPRS\",<br />");
}