Tagged Questions

ViewState is the mechanism that allows form field values to be preserved across page postbacks.

learn more… | top users | synonyms

82
votes
7answers
6k views

How can I take more control in ASP.NET?

I'm trying to build a very, very simple "micro-webapp" which I suspect will be of interest to a few Stack Overflow'rs if I ever get it done. I'm hosting it on my C# in Depth site, which is vanilla ...
45
votes
10answers
14k views

Erratic Invalid Viewstate issue in a .NET application

I seem to be getting a "invalid viewstate" every now and then in the event viewer for my ASP.NET application. Most of them (95%) seem to be referencing ScriptResource.axd (the application uses the ...
27
votes
8answers
5k views

Should I ignore the occasional Invalid viewstate error?

Every now and then (once every day or so) we're seeing the following types of errors in our logs for an ASP.NET 3.5 application Invalid viewstate Invalid postback or callback argument Are these ...
26
votes
3answers
20k views

“Padding is Invalid and cannot be removed” exception on WebResource.axd

I have an ASP.NET 2.0 application that is working fine in our local environment. When published to a test server, we're getting intermittent errors on the server. Here's the most common: Padding is ...
23
votes
7answers
32k views

What causing this “Invalid length for a Base-64 char array”

I have very little to go on here. I cant reproduce this locally, but when users get the error I get an auto email exception notification. Message: Invalid length for a Base-64 char array. Call ...
20
votes
10answers
2k views

asp.net c# MVC: How do I live without ViewState?

I am just looking into converting WebForms to MVC: In .net MVC, what concepts make ViewState something thats not required? If a form is posted back on iteself etc (ie a postback)? how does the ...
19
votes
4answers
4k views

Is ViewState relevant in ASP.NET MVC?

I am learning ASP.NET MVC and many concepts of "ASP.NET" like authentication, authorization, session state still apply to it. But from whatever little I have understood, I don't see that ViewState is ...
18
votes
2answers
527 views

asp.net viewstate encryption issue

I am attempting to turn on viewstate encryption Always as a security measure for my ASP.NET 3.5 website hosted in IIS6. We have viewstate turned off but still see some "controlstate" in this string. ...
17
votes
10answers
7k views

Invalid viewstate error

I'm getting an invalid viewstate error with regard to the ScriptResource.axd. Just wondering if anyone of you could help me on this. Error is: 2009-02-24 09:46:30,021 [13] DEBUG ASP.global_asax ...
12
votes
10answers
4k views

Does viewstate expire?

Let's say you have a aspx page that does not rely on session, but does rely on viewstate for persistance between postbacks. If a user is accessing this page, and leaves for a long lunch, will ...
12
votes
9answers
5k views

Problem with dynamic controls in .NET

Problem with dynamic controls Hello all, I'm wanting to create some dynamic controls, and have them persist their viewstate across page loads. Easy enough, right? All I have to do is re-create the ...
12
votes
7answers
17k views

How to decode viewstate

I need to see the contents of the viewstate of an asp.net page. I looked for a viewstate decoder, found Fridz Onion's ViewState Decoder but it asks for the url of a page to get its viewstate. Since my ...
10
votes
7answers
5k views

Invalid viewstate for ScriptResource.axd?

The Script Resource and the Web Resource files are generating intermittent errors in my application. I have been trying to chase the cause of the problem but to no avail. I notice that the ā€œdā€ ...
10
votes
16answers
2k views

Moving ViewState out of the page?

We are trying to lighten our page load as much as possible. Since ViewState can sometimes swell up to 100k of the page, I'd love to completely eliminate it. I'd love to hear some techniques other ...
9
votes
8answers
414 views

How to remove or compress your asp.net viewstate

Just spent a lot of time exorcising asp.net's large (but understandably useful) viewstate from an app, and i think it's worth sharing how it's done. Basically, i want this question to be open to all ...
9
votes
8answers
14k views

ASP.NET: Unable to validate data

What is the cause of this exception in ASP.NET? Obviously it is a viewstate exception, but I can't reproduce the error on the page that is throwing the exception (a simple two TextBox form with a ...
8
votes
8answers
3k views

Why would you ever use asp.net's ViewState storage object over the Session storage object?

Other than because session storage is session-global to more than one page, why would you ever want to use the viewstate to hold values? It seems kind of ridiculous to send any kind of information ...
8
votes
7answers
5k views

Cache v.s Session

What is the difference between storing a datatable in Session v.s Cache? Advantages and Disadvantages? So if it is a simple search page which returns results in a datatable and binds to a gridview. ...
8
votes
3answers
634 views

How to create a Generic StateManagedCollection?

One example is described here. But the author apparently forgot to include the code for download. Another example is shown here. However, this one doesn't quite work (as described in comments). ...
8
votes
7answers
8k views

Enable ViewState for few controls and disable for others/page

When I disable ViewState for the page. It does not allow any other control to use ViewState .. even if I set EnableViewState="true" for that particular control .. is it possible to enable ViewState ...
7
votes
4answers
671 views

ASP.NET- forcing child/container events to fire before parent onload?

I'm working on a questionnaire type application in which questions are stored in a database. Therefore, I create my controls dynamically on every Page.OnLoad. This works like a charm and ViewState is ...
7
votes
4answers
1k views

Which is best to use ViewState or hiddenfield

I have a page in which I want to maintain the value of object between post backs. I am thinking of two ways to maintain the value of objects Store the value in View Sate Store the value in ...
7
votes
7answers
3k views

ASP.NET MVC and ViewState

Now I've seen some questions like this, but it's not exactly what I want to ask, so for all those screaming duplicate, I apologize :). I've barely touched ASP.NET MVC but from what I understand there ...
7
votes
5answers
3k views

User control (ascx) and properties

The only way I've found to persist property values within a user control is to use the ViewState. public string Title { get { return Convert.ToString(ViewState["Title"]); } set { ...
7
votes
5answers
11k views

Dynamically created DropDownList loses ListItems on Postback

I have a page that contains some dynamically created controls (TextBox and DropDownList). When a postback occurs, the TextBoxes keep their values, but the DropDownLists lose their ListItems. This is ...
7
votes
9answers
16k views

Failed to load viewstate. Happening only occassionally. Tough to recreate

Details of Error are given below. This error happens only occasionally / rarely / sometimes and there aren't any steps to reproduce it. How can I know which Control is throwing this Viewstate ...
7
votes
4answers
4k views

In ASP.Net, during which page lifecycle event does viewstate get loaded?

I know it happens sometime before Load, but during what event exactly?
6
votes
2answers
875 views

Gallery/AdapterView Child Drawable State

I am using a Gallery view where the view corresponding to each item is non-trivial and consists of text as well as multiple buttons. When I click to drag the gallery view (somewhere not on one of the ...
6
votes
6answers
334 views

Div's Class not persisting when 'back' button is used

I have an ASP.NET page that contains two div's. Both have search fields and a search button contained within each of them. When I first come to this page, Div A has the class 'SearchDiv' while Div B ...
6
votes
4answers
1k views

ASP.NET CheckBox does not fire CheckedChanged event when unchecking

I have a CheckBox on an ASP.NET Content Form like so: <asp:CheckBox runat="server" ID="chkTest" AutoPostBack="true" OnCheckedChanged="chkTest_CheckedChanged" /> In my code behind I have the ...
6
votes
2answers
4k views

Even if DropDownList has its viestate disabled, SelectedValue should still return a value

I think I understand ViewState pretty well, but the following is giving me some troubles: From http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/truly-understanding-viewstate.aspx ...
6
votes
4answers
2k views

ASP.NET MVC - Is there a way to simulate a ViewState?

I have the following situation... In a certain View, the user must select the initial hour, the final hour and the weekday. But, I can't save this informations to DB 'cause I need to save my whole ...
6
votes
3answers
4k views

Uses for MachineKey in ASP.NET

What different ways are Machine Keys useful in asp.net? I think the following are correct but thought there may be more. Multiple applications can use the same cookie Multiple servers can work with ...
6
votes
5answers
1k views

ASP.net ViewState - Even when disabled, some viewstate exist. Why?

Even when on the page, the EnableViewState property is disabled, I am still seeing some viewstate existing on the page: "<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" ...
6
votes
1answer
3k views

asp.net viewstate encryption

I have a few questions about when and how viewstate is encrypted in asp.net 3.5. For instance, if I have a machinekey entry in my web.config like: decryptionKey="AutoGenerate,IsolateApps" ...
5
votes
1answer
60 views

How to disable ViewState?

I'm coming into Java world from MS and ASP.NET and looking for the similar to ASP.NET component-based HTML framework in Java. After reviewing tons of links in internet it looks like JSF2 (with ...
5
votes
3answers
1k views

hidden field vs viewstate

Q: What is the difference when using :: Hidden field vs View state?? when to use each one ?? which one more secure?? and which is better than in performance? what are the alternatives?
5
votes
3answers
1k views

ASP.NET: Moving ViewState to bottom of page

What are the latest and greatest ways to move ViewState to bottom of the page Can this be done in a IHttpHandler that can be specified in the web.config to intercept requests to "*.aspx"? ...
5
votes
8answers
934 views

ASP.NET: Compress ViewState

What are the latest and greatest ways to compress the ASP.NET ViewState content? What about the performance of this? Is it worth it to keep the pages quick and minimize data-traffic? How can I make: ...
5
votes
3answers
1k views

How can I re-instantiate dynamic ASP.NET user controls without using a database?

I'm currently working with a part of my application that uses Dynamic Web User Controls and I'm having a bit of trouble figuring out the best way to re-instantiate the controls on postback by using ...
5
votes
3answers
1k views

Is it possible to decode EventValidation and ViewState in ASP.NET?

How to decode the ASP.NET EventValidation and ViewState?
5
votes
4answers
839 views

What's a good way to determine what's in my viewstate?

I have a page that has a really huge viewstate (>300KB). ...Yeah, I know. I've narrowed this anomaly down to one user control, but am having trouble determining what exactly that control is putting ...
5
votes
7answers
3k views

ASP.NET 2.0 RijndaelManaged encryption algorithm vs. FIPS

I'm running into an issue with an ASP.NET 2.0 application. Our network folks just upped our security, and now I get the floowing error whenever I try to access the app: "This implementation is ...
5
votes
2answers
2k views

Failed to load viewstate when dynamically loading different controls

I have an aspx page which is loading some controls dynamically on postback (ie when a click event happens) and adding them to a placeholder. Depending on what is clicked a different set of controls ...
4
votes
2answers
608 views

ASP.NET MVC 3 - Best practice for handling Model in View

I am using ASP.NET MVC 3 and have several pages where the majority of the View Model is read-only. An example field would be like such: <div class="display-label">My Field</div> <div ...
4
votes
1answer
1k views

Minimizing viewstate- confused by `EnableViewState` and `ViewStateMode` in asp.net 4.0

I'm trying to clean up an older ASP.NET WebForms site that has ViewState enabled everywhere. This is a performance issue - huge viewstates cause noticeable submit delays. But most of the forms don't ...
4
votes
1answer
738 views

How to use ExtJS FormPanel with JSF 2.0

Im trying to use ExtJS FormPanel with JSF 2.0 + MyFaces 2.0.4. ExtJS is a great JavaScript framework at all. But it doesnt use DOM of Page. So the main problem starts with here. To put JSF beans in ...
4
votes
1answer
169 views

Why is there viewstate on my MVC 2.0 page?

sorry if this is a dumb question but i thought the whole thing with MVC was that there was no viewstate (or the choice to not have viewstate), yet when i create my page i have this: <div ...
4
votes
2answers
233 views

How to extend a serializable class so it can still be serialized?

I have a class like this that I want to save in ViewState for an asp.net UserControl. It basically extends a generic list with a few methods but also adds some properties, e.g. public class ...
4
votes
6answers
283 views

Is it safe to store credit card and pricing information in ViewState even over ssl?

The Title pretty much says it all but to clarify more I have a page with private properties that are storing a credit card object and a shopping cart object in viewstate so I can maintain a reference ...

1 2 3 4 5 16