How to ignore missing link errors?
Hi
In my current ASP.NET project I have some links looking like this
<asp:HyperLink ID="HyperLink4" runat="server" NavigateUrl="~/category">Category</asp:HyperLink>
But the ~/Cateogry does not exist physically. It gets routed. But ReSharper keeps telling me this is an error.
Is there way to make ReSharper ignore this error?
Thanks
Please sign in to leave a comment.
I think you need to do it in the Inspection Tool, which doesn't show up until you manually run a Code Inspection. Look in the help for "suppress" and Inspection Tool. Also see this thread - http://devnet.jetbrains.net/message/5258367.
d