ViewState is the mechanism that allows form field values to be preserved across page postbacks.
0
votes
0answers
23 views
JSF components ViewState is being lost when I open rich:popupPanel
I have a rich:popupPanel with content:
<rich:popupPanel id = "popupId">
<h:panelGrid>
<h:form id="formId">
<h:panelGrid>
// content, ...
0
votes
4answers
27 views
ViewState not saving values during PostBack
I'm making a webapp with vb.net, and I need to make a TextBox inside an UpdatePanel to change focus to another textbox after a PostBack. I decided to use a ViewState to save a numbre that will be read ...
1
vote
0answers
48 views
How to get rid of the view state caching for ASP.NET page
I make up a dynamic table in a code behind file using the code as such:
<table border="0" cellpadding="4" cellspacing="0">
<asp:PlaceHolder ID="PlaceHolder1" EnableViewState="false" ...
0
votes
3answers
62 views
c# entity , deleting a db record from a drop down list selected value
How do I delete a record from drop down list selected value?
I have populated the drop down list from database and I am having problems to delete it with a delete button. Am I doing the right way? ( ...
0
votes
0answers
33 views
ViewState timing issue with DataPager in SharePoint 2013?
I'm porting an existing custom SP 2010 webpart containing a UserControl with a ListView and a DataPager to SP 2013 and seeing some weirdness with the DataPager and I believe the cause is associated ...
1
vote
1answer
49 views
Fail to clear selected item with Javascript on inherited ASP.Net RadioButtonList
I need to clear the selected item from a custom RadioButtonList, but its not working on postback.
I've got a custom control that inherits from the ASP.Net RadioButtonList.
When the control has an ...
3
votes
1answer
69 views
System.Web.UI.ViewStateException ,Invalid viewstate
My website is throwing the below exceptions everyday and i couldn't find the solution.
i did few research in web and this is what i do so far. adding below option to aspx won't solve the problem.
...
2
votes
1answer
108 views
UserControl Viewstate loses all values after postback
I have a user control on a page that needs to persist some state in viewstate. Whenever a postback happens the entries in the viewstate get set to null.
Page
<%@ Page Title="" Language="C#" ...
1
vote
0answers
27 views
Save Placeholder on Postback
I am creating a table dynamically on an click event of a Button
private void CreateDynamicTable()
{
PlaceHolder1.Controls.Clear();
int tblRows = Rows;
int tblCols = ...
0
votes
0answers
53 views
Dealing with an Imperfect ViewState - Best Practices - Move To the Bottom? Disable for Crawlers?
I have some large controls that are swelling my ViewState to 10KB+. Ignoring the discussion about using alternatives to ViewState, I'm trying to minimize any impact my ViewState might have on page ...
0
votes
0answers
31 views
Asp.net enableViewStateMac=true not hashing
I've got an ASP.net web forms application. I'm trying to work through some security issues with it. Previously the developers before me had disabled MAC on the viewstate. I'm trying to reenable it. ...
0
votes
1answer
41 views
Viewstate in PHP
Is it possible to enable viewstate in PHP?
The one where you input the value and the value stays there even when you refresh the page.
If yes, a brief explanation on how it works is greatly ...
0
votes
0answers
31 views
How to persist child controls in a CompositeDataBoundControl
The documentation for the CompositeDataBoundControl class (http://msdn.microsoft.com/en-us/library/ms366539(v=vs.100).aspx) states the following:
This is the base class that extends the ...
0
votes
0answers
28 views
Adding rows dynamically to a GridView to which a DataTable is bound — ISSUE
Adding rows dynamically to a GridView by a click of a button is all over the internet and I managed to tweak the code a little to suit my needs and now the problem is that everytime I click the ...
-1
votes
0answers
48 views
ViewState + UpdatePanel doesn't work, why? [closed]
i'm trying add input to a form dynamiclly, when i click in the button, the checkbox lose your value.
Why it happens?
**How much do I have to write in order for stackoverflow to allow me to post ...
0
votes
1answer
39 views
What happens to the ViewState when I click back on the browser?
I'm curious to know what happens to the ViewState on the browse back button.
Does it stay or does the page make a new request?
0
votes
1answer
85 views
EnableViewState=“false” does not work and Why asp.net view sate automatically decoded and stored in browser
I used asp.net text-box and set
EnableViewState="false"
then i run my code and enter some sample texts and i enforced the post-back (which means click the button )then Textbox control retain ...
0
votes
1answer
62 views
Remove elements of List<int> use View State in asp.net
I am meeting a problem about View State. Here my code:
public List<int> ListId
{
get
{
return (List<int>)ViewState["ListId"];
}
set
{
...
0
votes
0answers
56 views
Errors in IE 8.0.7601 or higher in win2008 & win7 only: Unable to validate data at System.Web.Configuration.MachineKeySection.EncryptOrDecryptData
Environment:
1) .NET framework 4.0 web application hosted in IIS7 in Windows 2008 of a virtual (VM) box. This application uses the application pool which is not shared by other web applications.
2) ...
1
vote
2answers
58 views
I have one issue for ViewState
What is the meaning of EnableViewState="false" and EnableViewState="true"?
I Know EnableViewState="false" = turn Off the ViewState and also EnableViewState="true" = turn On the ViewState
But What ...
0
votes
3answers
129 views
How I can change a dropdownlist on SelectedIndexChange of another dropdownlist?
I want to change a DropDownList depending on the selected index of another DropDownList, so that if I change a value in the first dropdownlist, the second dropdownlist should change too.
Im using ...
0
votes
0answers
23 views
JSF numberOfViewsInSession,numberOfLogicalViews difference?
<context-param>
<param-name>com.sun.faces.numberOfViewsInSession</param-name>
<param-value>1</param-value>
</context-param>
...
2
votes
1answer
36 views
Could the repetition of Ids cause random errors concerning viewstate?
The asp.net accept repetitive Ids for asp.net server controls in different template fields .
<ItemTemplate>
<asp:HiddenField ID="HDN_MainCode" Value='<%#Eval("v_main_code")%>' ...
0
votes
2answers
80 views
Is it possible to get a SqlDataSource parameter from the ViewState in asp.net web forms?
I have a SqlDataSource defined in my aspx file that I use to call a StoredProcedure. It takes a hiddenField as its control parameter.
<asp:HiddenField ID="input" runat="server" />
...
0
votes
0answers
112 views
Keep the same page state after every postback or page reload in asp.net
Sorry if this a foolish question because of my less knowledge in ASP.NET state handling.
My question is if we have default.aspx page with a gridview in it. And on clicking on the name of an element in ...
2
votes
3answers
78 views
Viewstate Validation fails in web-farm - Usual suspects eliminated
I think that I've tried all of the standard responses to this problem, and I know that I've read hundreds of questions and posts about this problem, but none of them seem to have resolved it or shed ...
0
votes
0answers
23 views
Send Data to a html page from an ASP based Webservice
I have a webservice which receives data from an android mobile phone, now i would want to get this webservice to pass on this data to an html page into the textbox. I'm a beginner with little/no idea ...
0
votes
2answers
148 views
radiobuttonlist selectedindexchanged event firing unexpected
I have a radiobuttonlist I change the selected item in codebehid
private void DisplayPrivacyTerms(long ImageId)
{
if (ImageryDataAccess.GetImagePrivacyTerm(ImageId).ToLower() == "me only")
{
...
4
votes
3answers
218 views
Invalid ViewState when using jQuery tabs
I have a fairly simple page with a set of jQuery tabs, the content of some is called via ajax. I also have a search box in the masterpage in my header.
When I open the tabbed page the search box ...
1
vote
0answers
32 views
IOS app cannot HTTP post to a form on a aspx site
I am creating an app to login to a website instead of using a browser using HTTP post. I am using AFHTTPClient to handle all my post parameters.
Using Charles Proxy and accessing the site normally ...
0
votes
1answer
127 views
How to I carried out Textbox value from ViewState when I postback?
I want to know that how can I trace out the value of Textbox from ViewState.
As user enters any value into Textbox and click submit button because of postback Textbox value disappears ,
But if ...
0
votes
2answers
101 views
Unable to clear viewstate
Hi all I am assigning a Datatable for viewstate on certain operations like on each button I will assign a row and will bind that to datatable and assigning that datatable to viewstate. I am having a ...
1
vote
0answers
127 views
DropDownList controls in panel losing values on postback?
Apologies if this is forgetful late-night coding, but....
I've got some dynamically populated DropDownList controls that are being added to a panel at runtime. I've had the panel with and without ...
0
votes
0answers
58 views
Mvc maintain user input on multiple toggled partial views
We're using WebForms and I was wondering how this would be done. We have a page where a user is able to dynamically load controls to edit various services to which they are subscribed. This is done by ...
1
vote
2answers
121 views
How to reduce viewstate size of server control?
I have developed a server control which inherits from CompositeDataBoundControl and INamingContainer. It has 2 TextBoxes and 1 small image.
But when rendering in GridView its ViewState size is up to ...
0
votes
1answer
62 views
check if entire list index exists
I have a .aspx program that has a list that can be edited and deleted from. I need to find a way to check if the list index exists so that I can populate my panels accordingly. I am NOT looking for ...
0
votes
0answers
71 views
Curl request aspx page
I'm trying sending asph form by cURL.
But when sending data - getting 500 server error.
[FormatException: Invalid length for a Base-64 char array or string.]
[ViewStateException: Invalid viewstate. ]
...
2
votes
1answer
114 views
ViewState - proper way to store data in collections
Assume I have a collection of objects
List<MyClass> collection = new List<MyClass>();
And a dictionary where these objects will be inserted
Dictionary<string, ...
0
votes
1answer
190 views
Failed to load viewstate - dynamic controls in ASP.NET
I have read many articles on viewstate but I can't get my head around it.
Basically I want to have two listboxes with add and remove buttons and a Proceed button.
When the Proceed button is ...
2
votes
2answers
410 views
Keep a value accessible in Page.Init between postbacks in asp.net
Ok, I've already learned that in order to keep the dynamic (created) controls and their viewstate in asp.net we must (re)create them in the Page init event, so they already exist within the page's ...
0
votes
0answers
230 views
ASP.NET Tab Container Retain Control State on Switching tabs
Here's my setup:
ASP.NET Web Forms,
.Net 4.0 Framework
AJAX Tab container
Was thinking if switching to tabs that were previously opened could be loaded from view state? Assuming the View State is ...
1
vote
0answers
38 views
Set __Viewstate's base-64 encoded string of an ASP page from an android application
I'm hosting a website which contains a textbox and a button. I would like to set the hidden field __VIEWSTATE of the ASP web page with the base-64 encoded string which i'm sending from my android ...
0
votes
1answer
106 views
Why ViewState is not available in class library project?
I have a situation while uploading file . If file upload control has file then it will pick the path from file upload control else it will the path saved in ViewState["ImagePath"].
I want to make it ...
0
votes
1answer
120 views
Validation of viewstate MAC failed error.
I built a website with some ASPX-C# pages, I added a new page with a form. The problem is that when I click submit I get the following error:
Validation of viewstate MAC failed. If this ...
0
votes
0answers
117 views
Inherit from asp.net control: how to add a custom attribute with ViewState support
I have an ASP.NET custom server control which inherits from LinkButton. It adds a custom attribute, which appears correctly on the client side as data-attribute="value" inside the anchor tag. So far ...
1
vote
1answer
130 views
I need to remove items from a list
I am making a program that takes user input and populates that into a list. That part is working great. However the user needs the ability to edit or delete his/her input. I cannot figure out how ...
0
votes
0answers
58 views
Text box in repeater inserts string.empty to entity
I have a repeater with a text box in it. I want to update my entity with the value from the text box after hitting enter. Problem is it inserts string.empty, even though I get the value in my repeater ...
0
votes
3answers
111 views
List stays populated after PostBack
I have a .aspx application where the user inputs a name and that name is added to a list. This can be done up to five times. When the user clicks the button, the first name entered will display in ...
0
votes
0answers
204 views
Child Control GridView not binding
I have a quick question perhaps someone can help me.
I have an ASP.NET Page and inside this asp.net page I have an ASCX Control.
On my .net page form load it binds the GridView in the Child Control ...
1
vote
1answer
49 views
asp.net view state
Is it possible to get the value of the view state that ASP.NET writes in:
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="..." />
, before the processing is done for the page, ...


