I have a problem with the navigation in my ASP.NET (Framework 4) web project. I have a login field on the master-page. The master-page contains also one ContentPlaceHolder w
try this
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Response.Buffer = true; Response.CacheControl = "no-cache"; Response.AddHeader("Pragma", "no-cache"); Response.Expires = -1441; } }