I've posted before on a related matter with zero replies which I assume means I'm a genius and no-else has thought of doing this, or I'm a fool for trying.. I want to not display some of the message content depending certain strings in subject line. Modifying the ASPx pages to decide whether to display something. For example, to hide subject line in readmessage.asp <% if (2==1) { %> <td colspan="2" class="pvwFrom"> <% RenderSender(Response.Output); %> </td> <% } %> The trouble I have is that I need to do something more inteligent than testing if two equals one. I want to do some searching on the subject line. It appears that all content is rendered by calling functions in a number of DLLs. Most of these are VOIDs so don't return anything, and don't have a .ToString function. However, I got terrible excited when I found: Microsoft.Exchange.Clients.Owa.Basic.MeetingPage.get_Subject() : String Only to find out it's declared as private and OWA gets upset when I try to use it. Anybody have a clue how to get the subject line of the email into the ASP code so I can use it?