I was wondering if there was a clean way to programatically control the page title in ASP.Net. This is helpful with search engine optimizing techniques. I found a few examples across the web. I tried out a couple and to me, this solution seemed to be a very efficient way to handle the problem. In the HTML remove the existing <title></title> tags and replace it with the following: <asp:PlaceHolder id="titlePlaceHolder" runat="server" /> In the Code Behind add...