How Can We Help?
Issue
Users are getting a 404 error when clicking the link in the notification e-mail.
The link looks as follows:
http://[siteurl]/myActionItem.aspx?g=0&id=665
(The [siteurl] has been blanked out for the above)
The templates have a [LINK] placeholder which is correctly set.
Resolution
The problem is because the myActionItem has been renamed to ActionItem and the URL is being redirected incorrectly.
To resolve, create a new file in the website folder called myActionItem.aspx and add the following code into it:
<%@ Page Language="C#" Debug="true" %> <script runat="server"> protected void Page_Load(object sender, EventArgs e) { Response.Redirect("myActionItem.aspx?" + Request.QueryString); } </script>
Comments are closed.