I am using following code to redirect user to a page.
Session[\"USERDATA\"] = user; if (roleName.Equals(\"Zerker\", StringComparison.CurrentCulture)) Resp
I think you are using response object in your own class. This object will not be available there.
Try using
HttpContext.Current.Response.Redirect("~/Account/Dashboard.aspx");