Getting List of Accept Headers in ASP.Net

Mar 14 2005 6:32 AM
When I am using Request.AcceptHeaders method I always get only one element Array which is */* As Follows string[] types = Request.AcceptTypes; for(int z=0;z< types.Length;z++) { Response.Write("
Type===" + types[z]); } I wan to know what all Applications (Word, Acrobat Reader etc) are installed on the client machine(Browser) so that I can set the correct Headers while sending The Response.

Answers (1)