Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
253 views

Failed to load viewstate on NLB

We have a system which dynamically creates the controls of a page every post back and handles back using the browser history and such. The problem is that on the production server (2 nodes on NLB) we ...
2
votes
1answer
129 views

ViewStateUserKey sometimes doesn't validate

I have an application in ASP.NET that uses forms authentication. It has the following code. if (User.Identity.IsAuthenticated) ViewStateUserKey = User.Identity.Name; Stepping through I see ...
2
votes
1answer
899 views

Problem with LoadViewState after F5 page refresh - Failed to load viewstate

I'm having a problem in my ASP.NET application with Viewstate and F5 page refresh. If after navigating from one page to another I immediately hit F5, I get the following error: ...
1
vote
1answer
98 views

ASP.NET ViewState validation when manipulating DOM

I'm, using jQuery and ASP.NET to show a dialog containing buttons. After some scouring, I got the buttons in the dialog to work by adding a tad more JavaScript to append the dialog to the form. var ...
1
vote
3answers
1k views

Setting ViewStateUserKey gives me a “Validation of viewstate MAC failed” error

I have the following in my BasePage class which all my ASPX pages derive from: protected override void OnInit(EventArgs e) { base.OnInit(e); ViewStateUserKey = Session.SessionID; } I also ...
0
votes
2answers
57 views

Displaying and hiding parts of the web form freely without limitations in order to avoid ViewState loading problems

The problem I have a web form and I would like to hide and show some panels. When I say "Panel" I do not mean the Panel control but just a pane in the html (usually represented by a DIV). Well I ...
0
votes
1answer
135 views

Failed to load viewstate - no dynamically loaded controls

We are getting sporadic reports of the famous "Failed to load viewstate". It is very difficult to track down because we are not using any dynamically loaded controls. And it is sporadic. "Failed ...
0
votes
2answers
651 views

How can i add a row to a data-bound gridview without causing viewstate errors?

I'm trying to add a row grouping row to my data-bound gridview. It works fine on the first response, but at the postback i got the "Failed to load viewstate" error. There is the code for the ...
0
votes
1answer
381 views

Failed to load viewstate with a composite control

I have created a composite control that changes the controls in it based on the value of one of it's properties called "Type". The intent is that once this "Type" property is set, it is not changed ...
0
votes
3answers
333 views

“Cannot load ViewState” after dynamic control changed

In my ASP.NET page I have to dynamically choose and load a custom control, depending on the selected value in a dropdownlist.However I encountered the following problem: When the parameters of the ...
0
votes
1answer
541 views

How to avoid 'Failed to load viewstate' exception when adding markup to a repeater?

I have a custom control that inherits from Repeater. I need to inject some markup around the items within the repeater. Currently im looping around Repeater.Items (OnPreRender) and adding ...