"This
IFstatement is too long for one line. Break the body of theIFinto another line"
Long statements reduce code readability. Break down the body of if into another line to have a more readable code.
if (condition) Response.Redirect(string.Format("~/someAddress/someFolders/anotherFolder/{0}/", CurrentShop.Domain));should be 🡻
if (condition)
Response.Redirect(string.Format("~/someAddress/someFolders/anotherFolder/{0}/", CurrentShop.Domain));OR 🡻
if (condition)
{
Response.Redirect(string.Format("~/someAddress/someFolders/anotherFolder/{0}/", CurrentShop.Domain));
}