0
votes
4answers
43 views
Reducing viewstate size in asp.net
Hai Guys,
I use 'n' number of server controls in my page... Now i am into performance tuning and i ve noticed that my viewstate is too large that it makes my page slow...
I know viewstate size can …
0
votes
2answers
52 views
Getting Failed to load viewstate error…
First off, I am not dynamically creating any controls. This is the order I take to produce the error:
I have a listview on the page, when I click the edit link under the listview, I display a panel …
0
votes
1answer
27 views
ASP.NET Custom Server Control not persisting ViewState
Hello,
I have created a custom Server control that processes some data, stores that data to ViewState, and then renders itself from that data. I am using the debugger and can physically see the data …
0
votes
2answers
24 views
Gridview ControlState very large even when viewstate disabled and not using DataKeyNames
Hi,
I have an asp:Gridview bound to an asp:ObjectDataSource. I have disabled the ViewState on the GridView, and have not set the DataKeyNames property. I have about 10 BoundFields and a few …
0
votes
2answers
49 views
ViewState is not saved across postback the second time the page postsback.
I have an ASP.NET Page that contains a User control called ReportCtrl (my own control that has nothing to do with Reporting services etc.). ReportCtrl has a User control called TreeViewCtrl which …
1
vote
4answers
67 views
ViewState and refresh
Rather than using the Session object or storing to the database, I am storing temporary variables that I need persisted to custom ViewState variables. For example, ViewState("MyField1") = 1
When the …
1
vote
1answer
29 views
Send page by email ViewState issue
Hi,
My client wants a page that they can send as an email through IE, but when I do File>Send>Page by Email it adds a hidden input field at the top of the page with some random letters in it.
I've …
0
votes
4answers
70 views
Session State v ViewState
In our application, we have a "BasePage" that declares a number of properties to be used by more or less every page in the app.
Inside these properties, they write to ViewState. These are all …
1
vote
2answers
21 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 …
1
vote
1answer
40 views
Validation of Viewstate MAC failed
I've been getting a validation of viewstate error for a long time on my site that I have yet to be able to reproduce. Based on the user-agents and IP addresses, it seems to mostly be coming from …
1
vote
1answer
46 views
asp.net mvc clearing a form after post
I'm a .net programmer, but new to mvc.
I created a new mvc page with a simple form on it - 2 textboxes and a submit button.
Upon posting, it goes to my server side method, where the user info is …
3
votes
2answers
65 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 …
0
votes
3answers
60 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">
…
0
votes
1answer
31 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
59 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 …
