I am trying to change the access denied page to add our help desk information and remove "Request access" link. Adding a "p" tag will work but when I try to remove/comment out the line for the asp link for "Request access" it throws me an error. What am I doing wrong? By the way I am editing in notepad directly on the WFE server.
<%@ Assembly Name="Microsoft.SharePoint.ApplicationPages, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%> <%@ Page Language="C#" Inherits="Microsoft.SharePoint.ApplicationPages.AccessDeniedPage" MasterPageFile="~/_layouts/simple.master" %> <%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %> <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Import Namespace="Microsoft.SharePoint" %> <%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> " EncodeMethod='HtmlEncode'/> " EncodeMethod='HtmlEncode'/>
" EncodeMethod='HtmlEncode'/> " EncodeMethod='HtmlEncode'/>
To request access please contact the help desk xxx-xxx-xxxx
<asp:HyperLink id="HLinkLoginAsAnother" Text="<%$SPHtmlEncodedResources:wss,accessDenied_logInAsAnotherOne%>" CssClass="ms-descriptiontext" runat="server"/> <br/> <asp:HyperLink id="HLinkRequestAccess" Text="<%$SPHtmlEncodedResources:wss,accessDenied_requestAccess%>" CssClass="ms-descriptiontext" runat="server"/> </td>

