@Html.Partial(“~/Shared/SuccessErrorStatus”)
Server Error in ‘/’ Application.
The partial view ‘~/Shared/SuccessErrorStatus’ was not found or no view engine supports the searched locations. The following locations were searched:
~/Shared/SuccessErrorStatus
It seems to give the impression the path has been searched but it doesn’t seem to have resolved the path correctly.
You should use either complete name as Darin pointed out or use a View name only.
In this case
should work too.