Tagged Questions

31
votes
7answers
3k 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 …
17
votes
11answers
4k views

Erratic Invalid Viewstate issue in .net application

Hi, 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 ScirptResource.axd (the application uses …
14
votes
7answers
1k 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 …
12
votes
13answers
3k 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
9answers
1k 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 …
11
votes
3answers
5k 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 …
8
votes
9answers
1k 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 …
7
votes
3answers
330 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 …
7
votes
8answers
2k views

SrcriptResource.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ā€ …
7
votes
2answers
310 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). …
7
votes
14answers
822 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 …
6
votes
4answers
917 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?
5
votes
2answers
831 views

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

Hello, 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 …
5
votes
8answers
819 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 …
4
votes
4answers
127 views

Which is best to use ViewState or hiddenfield

Hi All, 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 …

1 2 3 4 5 18 next
15 30 50 per page