1
vote
1answer
19 views
Closing slashes on viewstate tags?
All,
I've noticed that asp.net includes a closing slash on the viewstate form field:
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="blah blah blah" />
How can I prevent this …
0
votes
3answers
59 views
find if dropdown value was added dynamically
Is there a way to determine (after a postback) if a value in a dropdownlist has been added dynamically or is one of the initial values?
eg.
<asp:DropDownList ID="MyDDL" runat="server">
…
3
votes
2answers
52 views
Optimizing ViewState
Does anyone have any ideas or references they could point me to regarding optimizing the viewstate of my ASP .NET application? I don't want to turn it off all together, and the main goal of optimizing …
2
votes
2answers
220 views
Is it possible to decode EventValidation and ViewState in ASP.NET?
How to decode the ASP.NET EventValidation and ViewState?
1
vote
3answers
138 views
Using session like ViewState
I am fixing an ASP.NET application that makes heavy use of session to track per-page data. One of the problems is that the session bleeds between pages.
ViewState would be a better solution, except:
…
0
votes
1answer
21 views
Change default value of EnableViewState
I know that with other properties you can define their default value by using skins. But for some reason they won't let me do this for EnableViewState.
I don't want EVERYTHING set to …
0
votes
1answer
19 views
Inside what the TexBox value is posted back? ViewState or post back data?
In one article I was reading on ViewState, I saw a sentence saying that I should not fall into a mistake to believe that the value of a TextBox is stored in ViewState; it is stored in PostBack data.
…
3
votes
5answers
2k 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 …
0
votes
0answers
19 views
Using custom TypeConverters on complex custom objects that contain generic collections
I have a class, Questionnaire, which contains a collection class that wraps a generic list, EntityCollection. I am using ViewState to persist the Questionnaire and its collection of Questions. I am …
0
votes
0answers
9 views
TypeConverter and generic collection
I have a class, Questionnaire, which contains a collection class that wraps a generic list, EntityCollection. I am using ViewState to persist the Questionnaire and its collection of Questions. I am …
0
votes
1answer
46 views
DropdownList losing items on postback in iframe.
Having a very strange issue regarding postback in ASP.NET. I have page dynamically populating DropdownLists on Page_Load, only if it's not a postback. I also have several textboxes on the page for …
17
votes
11answers
3k 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 …
0
votes
1answer
19 views
AspNet ViewState piece showing on the page with Google Chrome
Im not sure why is this happening but there is a piece of viewstate being shown on the top of my page with its closing tag.
I believe is just happening when there is some javascript code in the page, …
1
vote
4answers
125 views
ASP.NET DropDownValue is not persisted across one server in webfarm
I have a problem that a DropDownList is losing its SelectedValue after a PostBack on one server on the web farm. On the other servers, everything is working correctly.
All servers are on the same …
1
vote
4answers
51 views
ASP.NET datasets and memory
I am using framework 2.0, and I don't understand how the datagrid and the datasets works after doing a postback. In msdn says that there's no need to do a databind again if the request is a postback. …
