Recently I was flipping through some security issues faced by websites. Fortunately come across a new term \"Click jacking\"
I understood that this attack happens on
In your Global.asax you can add the following
protected void Application_BeginRequest(object sender, EventArgs e) { HttpContext.Current.Response.AddHeader("x-frame-options", "SAMEORIGIN"); }