active questions tagged viewstate - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:44:06Z http://stackoverflow.com/feeds/tag/viewstate http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/728513/erratic-invalid-viewstate-issue-in-net-application 16 Erratic Invalid Viewstate issue in .net application Martin 2009-04-08T04:23:21Z 2009-11-29T10:53:45Z <p>Hi,</p> <p>I seem to be getting a "invalid viewstate" every now and then in the event viewer for my asp.net application.</p> <p>Most of them (95%) seem to be referencing ScirptResource.axd (the application uses the ajax.net library). There is no way i can remove the ajax library either as ajax is used everywhere..</p> <p>Any idea how i reduce these errors? Im getting ~ 100-200 errors a day and i have no idea how to fix them! They come from different browsers, different IPs and geographical locations.</p> <p>Its difficult for me to reproduce the problem because its barely even happened to me, its only happened to me 3-4 times out of the blue.</p> <p><strong>Error:</strong></p> <pre><code>Process information: Process ID: 4004 Process name: w3wp.exe Account name: NT AUTHORITY\NETWORK SERVICE Exception information: Exception type: HttpException Exception message: Invalid viewstate. Request information: Request URL: http://domainnamehere/ScriptResource.axd?d=W1R6x9VzZ2C9SKnIkOmX9VRLhSjJ3nOF1GSQvPwKS3html Request path: /ScriptResource.axd User host address: 124.177.170.75 User: Is authenticated: False Authentication Type: Thread account name: NT AUTHORITY\NETWORK SERVICE Thread information: Thread ID: 1 Thread account name: NT AUTHORITY\NETWORK SERVICE Is impersonating: False Stack trace: at System.Web.UI.Page.DecryptStringWithIV(String s, IVType ivType) at System.Web.UI.Page.DecryptString(String s) at System.Web.Handlers.ScriptResourceHandler.DecryptParameter(NameValueCollection queryString) at System.Web.Handlers.ScriptResourceHandler.ProcessRequestInternal(HttpResponse response, NameValueCollection queryString, VirtualFileReader fileReader) at System.Web.Handlers.ScriptResourceHandler.ProcessRequest(HttpContext context) at System.Web.Handlers.ScriptResourceHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously) Custom event details: For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp. </code></pre> <p>I also get this error every now and then in my .net code which happens at the same time which might be related:</p> <pre><code>Exception raised in GLOBAL.ASAX.Application_Error(): 'Padding is invalid and cannot be removed.' at System.Security.Cryptography.RijndaelManagedTransform.DecryptData(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount, Byte[]&amp; outputBuffer, Int32 outputOffset, PaddingMode paddingMode, Boolean fLast) at System.Security.Cryptography.RijndaelManagedTransform.TransformFinalBlock(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount) at System.Security.Cryptography.CryptoStream.FlushFinalBlock() at System.Web.Configuration.MachineKeySection.EncryptOrDecryptData(Boolean fEncrypt, Byte[] buf, Byte[] modifier, Int32 start, Int32 length, IVType ivType, Boolean useValidationSymAlgo) at System.Web.UI.ObjectStateFormatter.Deserialize(String inputString) </code></pre> <p>Please help this is driving me nuts !!</p> <p>thanks, martin</p> http://stackoverflow.com/questions/1811143/aspnet-viewstate-piece-showing-on-the-page-with-google-chrome 0 AspNet ViewState piece showing on the page with Google Chrome Homer1980ar 2009-11-28T00:37:34Z 2009-11-28T01:33:03Z <p>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.</p> <p>I believe is just happening when there is some javascript code in the page, but is quite odd because has nothing to do with the ViewState at all.</p> <p>Anybody knows anything about this?</p> <p>Thanks, Leonardo</p> http://stackoverflow.com/questions/1190831/asp-net-dropdownvalue-is-not-persisted-across-one-server-in-webfarm 1 ASP.NET DropDownValue is not persisted across one server in webfarm adam 2009-07-27T21:47:59Z 2009-11-26T18:12:00Z <p>I have a problem that a <code>DropDownList</code> is losing its <code>SelectedValue</code> after a <code>PostBack</code> on <strong>one</strong> server on the web farm. On the other servers, everything is working correctly. </p> <p>All servers are on the same version of code with the same service packs and all updates applied. The code also works correctly when I run on my local machine (but point at the production database). </p> <p>I thought ViewState might be the problem, but I confirmed that the web.config, the <code>aspx</code> page, and code are the same across all machines.</p> <p>I did receive a <code>Input string was not in a correct format.</code> error when trying to <code>Convert.ToInt32()</code>. </p> <p>I added <code>Trace.Write</code> to figure out that the <code>DropDownList</code> value is <code>null</code> on <em>only</em> this particular server.</p> <h3>Code Snippet</h3> <pre><code>protected void Page_Load(object sender, System.EventArgs e) { if (!Page.IsPostBack) { LoadClientDropDown(); } } protected void LoadClientDropDown() { //load the drop down ddlClients from data } protected void btnSave_Click(object sender, System.EventArgs e) { int clientValue = Convert.ToInt32(ddlClients.SelectedValue); } </code></pre> <p>What could I be missing?</p> http://stackoverflow.com/questions/1802132/asp-net-datasets-and-memory 1 ASP.NET datasets and memory ric 2009-11-26T07:46:05Z 2009-11-26T08:04:15Z <p>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. But my question is: how the datagrid shows again the records if there is no databind? I supose that asp.net saves in a cache the query results, but I am not sure. Please tell me what is the mechanism that .NET uses to accomplish it.</p> <p>I have a large query result (hundreds), paginated each 50 records, and I want to avoid doing the same query every time the user select the next 50 records.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1797626/something-like-viewstate-and-session 1 Something like viewstate and session BlankenshipMQ 2009-11-25T15:19:08Z 2009-11-25T19:08:59Z <p>The problem that I am having is as follows:</p> <p>I currently have a custom class that generates buttons and places them on a placeholder on a master page.</p> <p>The events for these buttons put specific values into session that differs values for a database query. In essence, the buttons serve as filters for charts.</p> <p>After creating all the buttons, I realized that session values will stay constant from page to page, so everytime a user enters a different page while another is open, the filters selected on the open page will remain constant for the new page that is opened.</p> <p>At first, I wanted to use viewstate rather than session, but then realized that a master page and a content page do not share the same viewstate.</p> <p>At the current time, I am thinking of using a prefix for the sesson key that will identify what page the filters actually exist for. However, I am not wanting to overload session with numerous values if the user wishes to have many pages open at the same time.</p> <p>Any solutions that would entail a way to share viewstate (or some other way to store values) between app_code, the master, and the content page?</p> http://stackoverflow.com/questions/1775327/asp-net-datatable-output-problem 0 ASP.NET DataTable output problem stampos 2009-11-21T12:16:46Z 2009-11-21T12:19:55Z <p>I can't for the life of me work out what I am doing wrong here, despite much searching on SO/Google.</p> <p>Basically I have a simple DataTable which is held in ViewState and adjusted during postbacks. When I try to write out the values, it is just an empty string. Please find below an abbreviated example of what I have - the output in this case just winds up as a string of apostrophes (one for each execution) so it looks as though the rows are being added, but the ("Product") column is empty. </p> <p>Thanks for your help.</p> <pre><code> Dim dtItems As New DataTable If ViewState("Items") Is Nothing Then Dim dcColumn As DataColumn dcColumn = New DataColumn() dcColumn.DataType = Type.GetType("System.String") dcColumn.ColumnName = "Product" dtItems.Columns.Add(dcColumn) ViewState("Items") = dtItems End If dtItems = CType(ViewState("Items"), DataTable) Dim drRow As DataRow drRow = dtItems.NewRow() drRow("Product") = "The Product" dtItems.Rows.Add() For Each drRow In dtItems.Rows txtTestDT.Text += drRow(("Product")).ToString &amp; "!" Next </code></pre> http://stackoverflow.com/questions/1770366/viewstate-of-ascx-lost-between-postbacks 0 Viewstate of ascx lost between postbacks Ulrik Rasmussen 2009-11-20T13:16:42Z 2009-11-20T13:38:05Z <p>In my ASP.NET application, I am loading an .ascx dynamically using LoadControl, using the following pattern:</p> <pre><code>var ctrl = LoadControl("/path/to/control.ascx"); ((ControlType)ctrl).SomeProperty = someData; placeholder.Controls.Add(ctrl); </code></pre> <p>The control that I add saves the SomeProperty property value directly to ViewState, as follows:</p> <pre><code>public int? SomeProperty { get { return (int?)ViewState["SomeProperty"]; } set { ViewState["SomeProperty"] = value; } } </code></pre> <p>After that, the ascx control lives a life on its own and all is well until postback occurs. When the page posts back, suddenly the view state is empty! I suspect this happens because I manipulate the ViewState before I add the instantiated ascx to my page. Also, I can prevent the ViewState from getting lost by adding the following line in the <code>Page_Load()</code> method of my ascx control:</p> <pre><code>SomeProperty = SomeProperty; </code></pre> <p>I have to do the above for each and every property to ensure that the ViewState is preserved. Now, is there a prettier way of doing this? Manipulating the ViewState after the instantiated .ascx has been added to the page is not an option - I need the contents of the ViewState in the <code>Page_Init()</code> and <code>Page_Load()</code> methods, which are triggered the instant I add the .ascx to my page.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1763050/accessing-controls-added-programmatically-on-postback 0 Accessing controls added programmatically on postback roosteronacid 2009-11-19T12:45:13Z 2009-11-19T14:06:49Z <p><strong>On postback</strong>: How can I access ASP.NET controls in my code-behind file, which are added programmatically?</p> <p>I am adding a CheckBox control to a Placeholder control:</p> <pre><code>PlaceHolder.Controls.Add(new CheckBox { ID = "findme" }); </code></pre> <p>Controls added in the ASPX file are showing up fine in <code>Request.Form.AllKeys</code> except the ones I add programatically. What am I doing wrong?</p> <p>Enabling the use of the ViewState on the controls does not help. If only it was that simple :)</p> http://stackoverflow.com/questions/1755257/error-using-viewstate-in-a-cluster -1 Error using viewstate (in a cluster?) Ritz 2009-11-18T11:04:03Z 2009-11-18T14:41:15Z <p>I am getting the follwing error,please tell me why this error is coming</p> <p>Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <code>&lt;machineKey&gt;</code> configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster. </p> http://stackoverflow.com/questions/1749965/can-i-change-the-browser-url-while-maintaining-viewstate-in-asp-net 1 Can I change the browser URL while maintaining ViewState in ASP.NET? StriplingWarrior 2009-11-17T16:14:58Z 2009-11-18T04:18:47Z <p>I'm doing some brainstorming for a portal framework, and I'm envisioning a breadcrumb navigation stack that is tracked via the ViewState (so that if the user clicks "back" in their browser and clicks some other link, the breadcrumb trail will depart from the right page). My pages are really just ascx controls that get loaded into a placeholder control on the main portal page based on the URL. When the user clicks a portal link, there is a postback that loads the original page and invokes the given link's "clicked" handler, which should then "push" the current location onto the breadcrumb stack before sending the browser a redirect instruction to change the URL to that of the page that I want to go to.</p> <p>That's as far as my brainstorming goes for the moment, because once we perform a redirect, we lose the ViewState. Rather than doing the redirect, I've thought of simply telling my main portal page to replace the current page control with the target page control, thus avoiding the extra http round-trip and allowing me to keep the ViewState. But then my entire website experience occurs in the context of a single URL, so I lose URL bookmarking among other things. And if I wrap some of my controls in AJAX panels, the entire site happens in one page request as far as the browser's history is concerned.</p> <p>What I would like is some way to have the browsing history and URLs behave as if each link is leading them to a new page with a descriptive URL and all that, but still have some way to know the path that the user took to get to the page that they're on (ViewState seeming to be the simplest way to track this).</p> <p>Could anyone suggest some techniques I might try using?</p> http://stackoverflow.com/questions/381369/asp-net-2-0-control-state-vs-viewstate 0 ASP .NET 2.0 Control State vs ViewState cwius 2008-12-19T15:52:19Z 2009-11-17T13:58:43Z <p>Is the new ControlState feature only applicable to custom controls or is it available for the standard server controls as well?</p> <p>That is..can you disable ViewState for an entire page with standard controls like Detailsview, Gridview and would it still work? <strong>Does ControlState apply to standard server controls?</strong></p> <p>Or in order to work with ControlState for standard server controls you have to modify their behavior by creating a new custom GridView/DetailsView?</p> http://stackoverflow.com/questions/1740289/can-we-store-viewstate-in-masterpage 0 can we store viewstate in masterpage? unknown (yahoo) 2009-11-16T05:45:53Z 2009-11-16T10:00:00Z <p>Example</p> <p>I have a gridview having multiple customers. When a user clicks on the customer link then the CustomerId is stored in the Session "CustomerId".</p> <p>if i open multiple customer details on multiple tabs then the Session "CustomerId" is overwritten. so it does not make sense to store customerid in the Session. </p> <p>I just want to store customerids for different tabs</p> <p>Is there a way by which i can store the customerid in the viewstate of the masterpage? (Assuming there is a single master page and multiple content pages.) </p> http://stackoverflow.com/questions/1717761/asp-net-vb-net-persist-a-gridviews-dynamically-chosen-datasourceid-over-mult 0 ASP.NET - VB.NET - Persist a GridView's dynamically chosen DataSourceID over multiple button clicks Bryan 2009-11-11T20:13:33Z 2009-11-12T05:45:59Z <p>I have an app where I need to dynamically choose an SQLDataSource for a GridView so I can use 1 of 2 stored procedures, depending on who is logged into the system. </p> <p>My problem is that I am using logic like this, in the button click... </p> <pre><code>If Session("SiteType") = "Type1" Then GridView1.DataSourceID = "SqlDataSource2" Else GridView1.DataSourceID = "SqlDataSource1" End If GridView1.DataBind() </code></pre> <p>This happens when you click the button that reveals the panel with the gridview in it. </p> <p>The user then makes changes (basically adjusting a text box on one or more liens of the grid) and then clicks "save". However, the gridview no longer knows its DataSourceID once this happens, so when I try to go through the gridview's rows - there are none. </p> <p>If, in the save button's click, I put the same code, it (of course) blanks out any of the data changes I made in the form. </p> <p>So, simply put - how do I dynamically choose the SqlDataSource, but only one time, so that the program then keeps that SqlDataSourceID associated with the gridview until the end of the cycle? Is this a ViewState thing? I don't totally understand ViewState... </p> <p>Pardon my ignorance - I'm assuming this is kind of simple, but I just don't have a ton of .NET experience. If there is a better way, I'd be interested in hearing that as well - that said, time is of the essence so I'm kind of looking for the quick fix right now (boss is breathing down my neck.. heh). </p> <p>Thanks!</p> http://stackoverflow.com/questions/1648274/using-savepagestatetopersistencemedium-for-master-page-asp-net 0 Using SavePageStateToPersistenceMedium() for Master Page ASP.NET IrfanRaza 2009-10-30T06:12:19Z 2009-11-11T09:15:41Z <p>VS 2005, ASP.NET with C#, Windows XP, II6</p> <p>Hi,</p> <p>Please refer to the topic <a href="http://www.codeproject.com/KB/viewstate/SaveViewState.aspx" rel="nofollow">http://www.codeproject.com/KB/viewstate/SaveViewState.aspx</a>. The topic demonstrates how you can save ViewState to a file system over server so as to make ViewState very small on roundtrips. The author had created a class BasePage by inheriting System.Web.UI.Page and all the pages are derived from this class.</p> <p>The site i am developing uses a masterpage and all the pages are derived from this masterpage. When i try to override SavePageStateToPersistenceMedium(), a compilation error is generated indicating that there is no such method to override within System.Web.UI.MasterPage.</p> <p>Does anyone of you have an idea, how could i solve this problem.</p> <p>Your help is highly appreciated.</p> <p>Thanks and Regards Irfan</p> http://stackoverflow.com/questions/1708016/viewstate-utter-confusion 1 Viewstate - utter confusion. maxp 2009-11-10T13:36:47Z 2009-11-10T20:53:26Z <p>This has me totally puzzled, can anyone explain this?</p> <p>Markup:</p> <pre><code>&lt;form id="form1" runat="server"&gt; &lt;asp:TextBox runat="server" ID="txtTest" /&gt; &lt;asp:PlaceHolder runat="server" ID="PlaceHolder1" /&gt; &lt;asp:Button runat="server" Text="Click" /&gt; &lt;/form&gt; </code></pre> <p>Code Behind:</p> <pre><code> protected void Page_Load(object sender, EventArgs e) { txtTest.Text = "BBB"; PlaceHolder1.Controls.Add(new TextBox() { Text = "AAA" }); } </code></pre> <p>When I change the text in both textboxes, then click the 'Click' button, the text in txtTest is reverted back to the original value 'BBB'(specified in page_load), but the dynamic textbox retains the value I just entered (and not 'AAA') despite this being specified at the same time as the other, 'hardcoded' textbox.</p> http://stackoverflow.com/questions/1702667/why-is-viewstate-lost-when-a-controls-property-is-modified-during-its-parents-c 0 Why is ViewState lost when a control's property is modified during its parent's Control.Render method? AaronSieb 2009-11-09T17:56:17Z 2009-11-09T21:23:21Z <p>I have code like the following in a UserControl:</p> <pre><code>Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter) If someCondition Then childControl.Enabled = false End If MyBase.Render(writer) End Sub </code></pre> <p>Whenever someCondition is true and childControl.Enabled is set to false during the Render event, the ViewState for childControl is destroyed (i.e. if it is a TextBox, the text that the user has entered is lost).</p> <p>Note that only the ViewState is lost... The control still renders with the correct property values the first time around. Only on PostBack, when properties are restored from ViewState are the values actually lost.</p> <p>The timeline is as follows:</p> <ul> <li>Page_Load (initial)<br> Properties are set via code.</li> <li>SaveViewState</li> <li>Render<br> Properties are modified.</li> <li>Postback occurs.</li> <li>LoadViewState</li> <li>Page_Load<br> Values of unaltered controls are still available, but controls which have had properties set during the Render method are blank.</li> <li>SaveViewState</li> </ul> <p>My understanding was that the ViewState became fixed during the call to Control.SaveViewState, which occurs prior to the call to Control.Render... But is there some nuance that I'm missing?</p> http://stackoverflow.com/questions/1473483/asp-net-mvc-and-viewstate 2 ASP.NET MVC and ViewState nickyt 2009-09-24T18:46:24Z 2009-11-07T20:56:37Z <p>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 :).</p> <p>I've barely touched ASP.NET MVC but from what I understand there is no ViewState/ControlState... fine. So my question is what is the alternative to retaining a control's state? Do we go back to old school ASP where we might simulate what ASP.NET ViewState/ControlState does by creating hidden form inputs with the control's state, or with MVC, do we just assume AJAX always and retain all state client-side and make AJAX calls to update?</p> <p>This question has some answers, <a href="http://stackoverflow.com/questions/1285547/maintaining-viewstate-in-asp-net-mvc">http://stackoverflow.com/questions/1285547/maintaining-viewstate-in-asp-net-mvc</a>, but not exactly what I'm looking for in an answer.</p> <p>UPDATE: Thanks for all the answers so far. Just to clear up what I'm not looking for and what I'm looking for:</p> <p>Not looking for:</p> <ul> <li>Session solution</li> <li>Cookie solution</li> <li>Not looking to mimic WebForms in MVC</li> </ul> <p>What I am/was looking for:</p> <ul> <li>A method that only retains the state on postback if data is not rebound to a control. Think WebForms with the scenario of only binding a grid on the initial page load, i.e. only rebinding the data when necessary. As I mentioned, I'm not trying to mimic WebForms, just wondering what mechanisms MVC offers.</li> </ul> http://stackoverflow.com/questions/1683032/problems-with-viewstate-corruption 0 Problems with Viewstate corruption. Cptcecil 2009-11-05T19:41:43Z 2009-11-05T19:50:36Z <p>I'm getting errors in a few of my pages:</p> <p>Error Message: Invalid character in a Base-64 string. Error Source: mscorlib Error Target Site: Byte[] FromBase64String(System.String)</p> <p>Error Message: Unable to validate data. Error Source: System.Web Error Target Site: Byte[] GetDecodedData(Byte[], Byte[], Int32, Int32, Int32 ByRef)</p> <p>Error Message: Invalid viewstate. Error Source: System.Web Error Target Site: System.String DecryptStringWithIV(System.String, System.Web.Configuration.IVType)</p> <p>Here is some context. Please let me know if you are seeing anything. I think this is being caused in part by my asp wizard control.</p> <h2>QueryString Data:</h2> <h2>Post Data:</h2> <p>ctl00$smgr: ctl00$MasterContentPlaceHolder$upl_Products|ctl00$MasterContentPlaceHolder$btn_Search __EVENTTARGET: __EVENTARGUMENT: __LASTFOCUS: __VIEWSTATEFIELDCOUNT: 3</p> <p>__EVENTVALIDATION: /wEWHwKV2/WwBQLGna/KAwK9x8a3BQKLhdbNCwLZ64aKDQKi8pQnAp/jp/4IApCM8ZMEApGM8ZMEApOMzZMEApSMzZMEAtbfoPUBAqPxgKMBAorGwpkKAseB0Z0KAqPxgKMBAt2Y6o8JAsDpmsoPAtKTqbABApnQzLoPAuPO3+EGAvqt7rUDAtyZ3acDAtf0wrEBAvKivZ0MAsGNqIUKAoyZyqoNAsbz9MYPAuDHqosLAs6pn9gKAr+Ru4sC6wYbrhtxXxHDOrBfBS6eE0Gfq9I= ctl00$hdf_DisplayModal: ctl00$UcHeader1$ucCreateAssociation$Wizard1$txt_AssociationName: ctl00$UcHeader1$ucCreateAssociation$Wizard1$txt_Doors: ctl00$UcHeader1$ucCreateAssociation$Wizard1$txt_Lockbox: ctrlPrefix: ctl00_MasterContentPlaceHolder_ ctl00$MasterContentPlaceHolder$txt_Search: CASA RIVIERA ctl00$MasterContentPlaceHolder$wmk_Search_ClientState: ctl00$MasterContentPlaceHolder$ddl_PageSize: 25 ctl00$MasterContentPlaceHolder$txt_sdi: ctl00$MasterContentPlaceHolder$hdf_ClonedProduct: ctl00$MasterContentPlaceHolder$hdf_ClonedProductDocumentID: ctl00$MasterContentPlaceHolder$btn_Search: Search</p> <p>User: 0893</p> <h2>Exception Stack Trace:</h2> <p>at System.Web.UI.ViewStateException.ThrowError(Exception inner, String persistedState, String errorPageMessage, Boolean macValidationError) at System.Web.UI.ViewStateException.ThrowMacValidationError(Exception inner, String persistedState) at System.Web.UI.ObjectStateFormatter.Deserialize(String inputString) at System.Web.UI.ObjectStateFormatter.System.Web.UI.IStateFormatter.Deserialize(String serializedState) at System.Web.UI.Util.DeserializeWithAssert(IStateFormatter formatter, String serializedState) at System.Web.UI.HiddenFieldPageStatePersister.Load() at System.Web.UI.Page.LoadPageStateFromPersistenceMedium() at System.Web.UI.Page.LoadAllState() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP.pif_default_aspx.ProcessRequest(HttpContext context) in c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\sdi\80f8adc6\386762ef\App_Web_xehehb6p.0.cs:line 0 at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously)</p> <h2>Server Variables:</h2> <p>ALL_HTTP: HTTP_CACHE_CONTROL:no-cache HTTP_CONNECTION:Keep-Alive HTTP_PRAGMA:no-cache HTTP_CONTENT_LENGTH:34935 HTTP_CONTENT_TYPE:application/x-www-form-urlencoded HTTP_ACCEPT:<em>/</em> HTTP_ACCEPT_LANGUAGE:en-us HTTP_COOKIE:intro=none; proofs=none; __utma=171421859.194166732.1176217884.1257437483.1257444560.528; __utmz=171421859.1257444560.528.335.utmcsr=southdata.com|utmccn=(referral)|utmcmd=referral|utmcct=/; .ASPXFORMSAUTH=BDF808EC8A45BADFBB4DB5AD85A8ADE465F4A3B2DB6BE338C17A1F9D77075A418FD178A5FD1F9C54DBE5442A8BEA229C938AC5026C0759B2C45DE0E1E930A7B3; __utmc=171421859; __utmb=171421859.76.10.1257444560; __utma=146810421.923635986.1176217867.1257437442.1257444513.419; __utmz=146810421.1257437442.418.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASP.NET_SessionId=zem03d55niqwuavria2n2x2p; __utmc=146810421 HTTP_HOST:republic.southdata.com HTTP_REFERER:<a href="https://republic.southdata.com/SDI/PIF/" rel="nofollow">https://republic.southdata.com/SDI/PIF/</a> HTTP_USER_AGENT:Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2; .NET CLR 1.0.3705) HTTP_X_MICROSOFTAJAX:Delta=true HTTP_UA_CPU:x86</p> <p>ALL_RAW: Cache-Control: no-cache Connection: Keep-Alive Pragma: no-cache Content-Length: 34935 Content-Type: application/x-www-form-urlencoded Accept: <em>/</em> Accept-Language: en-us Cookie: intro=none; proofs=none; __utma=171421859.194166732.1176217884.1257437483.1257444560.528; __utmz=171421859.1257444560.528.335.utmcsr=southdata.com|utmccn=(referral)|utmcmd=referral|utmcct=/; .ASPXFORMSAUTH=BDF808EC8A45BADFBB4DB5AD85A8ADE465F4A3B2DB6BE338C17A1F9D77075A418FD178A5FD1F9C54DBE5442A8BEA229C938AC5026C0759B2C45DE0E1E930A7B3; __utmc=171421859; __utmb=171421859.76.10.1257444560; __utma=146810421.923635986.1176217867.1257437442.1257444513.419; __utmz=146810421.1257437442.418.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASP.NET_SessionId=zem03d55niqwuavria2n2x2p; __utmc=146810421 Host: republic.southdata.com Referer: <a href="https://republic.southdata.com/SDI/PIF/" rel="nofollow">https://republic.southdata.com/SDI/PIF/</a> User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2; .NET CLR 1.0.3705) x-microsoftajax: Delta=true UA-CPU: x86</p> <p>APPL_MD_PATH: /LM/W3SVC/1/Root/SDI APPL_PHYSICAL_PATH: D:\Inetpub\wwwroot\sdi\ AUTH_TYPE: Forms AUTH_USER: 0893 AUTH_PASSWORD: LOGON_USER: REMOTE_USER: 0893 CERT_COOKIE: CERT_FLAGS: CERT_ISSUER: CERT_KEYSIZE: 128 CERT_SECRETKEYSIZE: 4096 CERT_SERIALNUMBER: CERT_SERVER_ISSUER: C=US, O=Network Solutions L.L.C., CN=Network Solutions Certificate Authority CERT_SERVER_SUBJECT: C=US, PostalCode=27030, S=NC, L=Mount Airy, STREET=201 Technology Lane, O=SouthData, OU=IT, OU=Secure Link SSL Wildcard, CN=*.southdata.com CERT_SUBJECT: CONTENT_LENGTH: 34935 CONTENT_TYPE: application/x-www-form-urlencoded GATEWAY_INTERFACE: CGI/1.1 HTTPS: on HTTPS_KEYSIZE: 128 HTTPS_SECRETKEYSIZE: 4096 HTTPS_SERVER_ISSUER: C=US, O=Network Solutions L.L.C., CN=Network Solutions Certificate Authority HTTPS_SERVER_SUBJECT: C=US, PostalCode=27030, S=NC, L=Mount Airy, STREET=201 Technology Lane, O=SouthData, OU=IT, OU=Secure Link SSL Wildcard, CN=*.southdata.com INSTANCE_ID: 1 INSTANCE_META_PATH: /LM/W3SVC/1 LOCAL_ADDR: 10.1.16.6 PATH_INFO: /SDI/PIF/Default.aspx PATH_TRANSLATED: D:\Inetpub\wwwroot\sdi\PIF\Default.aspx QUERY_STRING: REMOTE_ADDR: 204.9.125.194 REMOTE_HOST: 204.9.125.194 REMOTE_PORT: 59539 REQUEST_METHOD: POST SCRIPT_NAME: /SDI/PIF/Default.aspx SERVER_NAME: republic.southdata.com SERVER_PORT: 443 SERVER_PORT_SECURE: 1 SERVER_PROTOCOL: HTTP/1.0 SERVER_SOFTWARE: Microsoft-IIS/6.0 URL: /SDI/PIF/Default.aspx HTTP_CACHE_CONTROL: no-cache HTTP_CONNECTION: Keep-Alive HTTP_PRAGMA: no-cache HTTP_CONTENT_LENGTH: 34935 HTTP_CONTENT_TYPE: application/x-www-form-urlencoded HTTP_ACCEPT: <em>/</em> HTTP_ACCEPT_LANGUAGE: en-us HTTP_COOKIE: intro=none; proofs=none; __utma=171421859.194166732.1176217884.1257437483.1257444560.528; __utmz=171421859.1257444560.528.335.utmcsr=southdata.com|utmccn=(referral)|utmcmd=referral|utmcct=/; .ASPXFORMSAUTH=BDF808EC8A45BADFBB4DB5AD85A8ADE465F4A3B2DB6BE338C17A1F9D77075A418FD178A5FD1F9C54DBE5442A8BEA229C938AC5026C0759B2C45DE0E1E930A7B3; __utmc=171421859; __utmb=171421859.76.10.1257444560; __utma=146810421.923635986.1176217867.1257437442.1257444513.419; __utmz=146810421.1257437442.418.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASP.NET_SessionId=zem03d55niqwuavria2n2x2p; __utmc=146810421 HTTP_HOST: republic.southdata.com HTTP_REFERER: <a href="https://republic.southdata.com/SDI/PIF/" rel="nofollow">https://republic.southdata.com/SDI/PIF/</a> HTTP_USER_AGENT: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2; .NET CLR 1.0.3705) HTTP_X_MICROSOFTAJAX: Delta=true</p> http://stackoverflow.com/questions/1681924/need-help-in-asp-net-viewstate 0 Need help in asp.net viewstate Sumit 2009-11-05T16:45:12Z 2009-11-05T17:47:13Z <p>Hi all, Pls somebody help me with viewsate. Suppose i have created two forms. First form contains First name and Last name and one button called NEXT. And Second form contain two fields and two button like Back and Save. While i am entering some value in form1 pressing one NEXT button and redirecting to second page. There when i am pressing Back button from second page it should come to first page whichever data i filled should exists, but in my case its not showing only empty form i can see when i am pressing on back button. </p> <p>For this i have used viewstate mechanism. in page directory i have set enableviewstate=true. postbackurl in both the button. Pls somebody help me what is wrong with me.</p> <p>Thanks, Sumit</p> http://stackoverflow.com/questions/474367/dropdownlist-onselectedindexchange-to-0th-index-w-out-viewstate 1 DropDownList OnSelectedIndexChange to 0th index w/out ViewState Dave 2009-01-23T20:21:29Z 2009-11-04T20:34:39Z <p>I did follow the article <a href="http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/truly-understanding-viewstate.aspx" rel="nofollow">TRULLY Understanding ViewState</a> (great article btw) and populating my drop down list is working great. I've even setup a OnSelectedIndexChange event which fires almost as great. </p> <p>The problem I've found is the SelectedIndexChanged event won't fire when selecting the 0th index. It does all other times however.</p> <p>Here's some code:</p> <pre><code>&lt;asp:DropDownList runat="server" ID="DropDownList1" EnableViewState="false" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" /&gt; </code></pre> <p><br/></p> <pre><code>protected override void OnInit(EventArgs e) { this.DropDownList1.DataTextField = "Text"; this.DropDownList1.DataValueField = "Value"; this.DropDownList1.DataSource = fillQueueDropDown(); this.DropDownList1.DataBind(); base.OnInit(e); } protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { OnSelectedQueueChanged(e); } public void OnSelectedQueueChanged(EventArgs e) { // Do stuff. } public event EventHandler queueNamesChangedEvent; public void OnSelectedQueueChanged(EventArgs e) { if (queueNamesChangedEvent != null) queueNamesChangedEvent(this, e); } </code></pre> <p>I suppose I can do some type of check in the Page_Load method:</p> <pre><code> if(ViewState["selectedIndexChangedFlag"] != 1) // raise OnSelectedChange event </code></pre> <p>Or is there something I can setup in the OnInit() method where I'm rebinding this data everytime that i can do?</p> <p>See, my custom EventHander raises an event which is caught by a the parent page in which this control resides, so that the parent could take some action using the newly selected value. And this is currently working for all cases where the selected index > 0.</p> <p>I create a property in this control which contains the most recently selected index, in which case my parent page can action on this property value on every Page_Load... dunno.</p> <p>Open to suggestions. Or how to force this SelectedIndexChanged event to fire for that 0th index selection.</p> http://stackoverflow.com/questions/1672400/disable-viewstate-loading-for-child-controls 0 Disable viewstate loading for child controls Florin Sabau 2009-11-04T08:35:10Z 2009-11-04T16:30:11Z <p>I have a lot of web controls created dynamically in an ASP.NET page. In certain postback scenarios (when I click a LinkButton), I want to skip the loading of the old tree of web controls and immediately generate the new tree. Unfortunately, when I generate the new tree, the viewstate of the old tree is loaded into it.</p> <p>I want to be able to disable the viewstate loading process for this specific scenario, but after the new tree is loaded, the viewstate should work normally.</p> <p>I've already solved part of the problem, by overriding the LoadViewState method of the web controls, but, unfortunately, this disables the viewstate specific for the control, not for his children too (textboxes, buttons etc.).</p> <p>Is it possible?</p> <p>Thank you.</p> http://stackoverflow.com/questions/588176/invalid-viewstate-error 11 Invalid viewstate error Chamila 2009-02-25T22:18:31Z 2009-11-04T14:13:49Z <p>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:</p> <pre>2009-02-24 09:46:30,021 [13] DEBUG ASP.global_asax [(null)] - Request start - URL: /Web/ScriptResource.axd?d=E9hlvtsn8Gr1MyjysW1gFDFYr4CVwstY-sC22tRu5V8d7UyEYz3FhVYGrlhY87n2ihgKh58RrMRhK-Yk2WcQahEaCg_asTInqHK 2009-02-24 09:46:30,021 [13] DEBUG ASP.global_asax [(null)] - Application_AuthenticateRequest started 2009-02-24 09:46:30,021 [13] ERROR ASP.global_asax [(null)] - Unexpected error. User presented with Site Error page. System.Web.HttpException: Invalid viewstate. at System.Web.UI.Page.DecryptStringWithIV(String s, IVType ivType) at System.Web.UI.Page.DecryptString(String s) at System.Web.Handlers.ScriptResourceHandler.DecryptParameter(NameValueCollection queryString) at System.Web.Handlers.ScriptResourceHandler.ProcessRequestInternal(HttpResponse response, NameValueCollection queryString, VirtualFileReader fileReader) at System.Web.Handlers.ScriptResourceHandler.ProcessRequest(HttpContext context) at System.Web.Handlers.ScriptResourceHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)</pre> <p>This happens in production environment. I'm unable to reproduce this in dev nor test environments. Also these pages can only be accessed by authenticated users. It would be really if you could shed some light on this matter.</p> http://stackoverflow.com/questions/480392/srcriptresource-axd 6 SrcriptResource.axd? JamTech 2009-01-26T16:27:49Z 2009-11-04T14:01:14Z <p>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” parameter that is passed is some how corrupted and I can’t for the life of me figure out what’s causing this parameter to be corrupted. I noticed that JavaScript code that in my application is some how getting intertwined with the hash code that’s generated for the “d” parameter. </p> <pre> Exception genereated on Monday, January 26, 2009, at 2:20 AM Page location: /ScriptResource.axd?d=y9_dUwBeGqLlRpT5Dml1zhoQvfa7NKdj69EYuV771kzSsa5KOOXBfJZjk%20%20%20%20%20%20%20%20%20%20%20%20if%20(cat_gallery%20!= Requested Url : http://garmn.factoryoutletstore.com/ScriptResource.axd?d=y9_dUwBeGqLlRpT5Dml1zhoQvfa7NKdj69EYuV771kzSsa5KOOXBfJZjk if (cat_gallery != Message: Exception has been thrown by the target of an invocation. Source: mscorlib Method: System.Object _InvokeMethodFast(System.Object, System.Object[], System.SignatureStruct ByRef, System.Reflection.MethodAttributes, System.RuntimeTypeHandle) Stack Trace: at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner) at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner) at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks) at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters) at System.Web.Handlers.ScriptResourceHandler.DecryptString(String s) at System.Web.Handlers.ScriptResourceHandler.DecryptParameter(NameValueCollection queryString) at System.Web.Handlers.ScriptResourceHandler.ProcessRequest(HttpContext context) at System.Web.Handlers.ScriptResourceHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) Inner Exception: System.Web.HttpException: Invalid viewstate. at System.Web.UI.Page.DecryptStringWithIV(String s, IVType ivType) at System.Web.UI.Page.DecryptString(String s) User IP: 74.34.62.187 BaseMessage : Exception genereated on Monday, January 26, 2009, at 2:20 AM Page location: /ScriptResource.axd?d=y9_dUwBeGqLlRpT5Dml1zhoQvfa7NKdj69EYuV771kzSsa5KOOXBfJZjk%20%20%20%20%20%20%20%20%20%20%20%20if%20(cat_gallery%20!= Requested Url : http://garmn.factoryoutletstore.com/ScriptResource.axd?d=y9_dUwBeGqLlRpT5Dml1zhoQvfa7NKdj69EYuV771kzSsa5KOOXBfJZjk if (cat_gallery != Message: Invalid viewstate. Source: System.Web Method: System.String DecryptStringWithIV(System.String, System.Web.Configuration.IVType) Stack Trace: at System.Web.UI.Page.DecryptStringWithIV(String s, IVType ivType) at System.Web.UI.Page.DecryptString(String s) User IP: 74.34.62.187 User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Zune 3.0) </pre> http://stackoverflow.com/questions/1672573/validation-of-viewstate-mac-failed 0 Validation of viewstate MAC failed Yayan 2009-11-04T09:15:01Z 2009-11-04T09:44:00Z <p>Dear All, Help me how to solve this problem.</p> <p>Error Time : 20091104 151412 Error Message : Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster. Source : System.Web StackTrace : at System.Web.UI.ViewStateException.ThrowError(Exception inner, String persistedState, String errorPageMessage, Boolean macValidationError) at System.Web.UI.ViewStateException.ThrowMacValidationError(Exception inner, String persistedState) at System.Web.UI.ObjectStateFormatter.Deserialize(String inputString) at System.Web.UI.ObjectStateFormatter.System.Web.UI.IStateFormatter.Deserialize(String serializedState) at System.Web.UI.Util.DeserializeWithAssert(IStateFormatter formatter, String serializedState) at System.Web.UI.HiddenFieldPageStatePersister.Load() at System.Web.UI.Page.LoadPageStateFromPersistenceMedium() at System.Web.UI.Page.LoadAllState() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP.bla_bls_aspx.ProcessRequest(HttpContext context) in c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\87932190\f6393965\App_Web_slwxkxn3.2.cs:line 0 at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously) Target Site : Void ThrowError(System.Exception, System.String, System.String, Boolean) Inner Exception : System.Web.UI.ViewStateException: Invalid viewstate. Client IP: 172.16.153.71 Port: 1466 User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727) ViewState: /wEPDwUKLTg3MDIzOTc1Ng9kFgICAw9kFgICAw9kFgJmD2QWBgIdD2QWAgIBDzwrAA0BAA8WBB4LXyFEYXRhQm91bmRnHgtfIUl0ZW1Db3VudAIUZBYCZg9kFioCAQ9kFhpmDw8WAh4EVGV4dAUDODU4ZGQCAQ8PFgIfAgUKMSAgICAgICAgIGRkAgIPDxYCHwIFDE5ZS1UgNjEwOTc1MGRkAgMPDxYCHwIFAzQwJ2RkAgQPDxYCHwIFA05ZS2RkAgUPDxYCHwIFClgtUHJlc3MgMjFkZAIGDw8WAh8CBRQzMCBPY3QgMjAwOSAwNDowMDowMGRkAgcPDxYCHwIFB1RFTEZPUkRkZAIIDw8WAh8CBQJJS2RkAgkPDxYCHwIFAkZHZGQCCg8PFgQeCUJhY2tDb2xvcgqmAR4EXyFTQgIIZBYCAgEPDxYCHwIFCkluIFByb2Nlc3NkZAILDw8WBB8DCqcBHwQCCGQWAgIBDw8WAh8CBRQwNCBOb3YgMjAwOSAxMTowMDowMGRkAgwPZBYCAgEPDxYCHwIFBkV4ZmFjdGRkAgIPZBYaZg8PFgIfAgUDODU1ZGQCAQ8PFgIfAgUKMiAgICAgICAgIGRkAgIPDxYCHwIFDE5ZS1UgODQ0Mzc0NWRkAgMPDxYCHwIFAzQwJ2RkAgQPDxYCHwIFA05ZS2RkAgUPDxYCHwIFClgtUHJlc3MgMjFkZAIGDw8WAh8CBRQyOSBPY3QgMjAwOSAwMzozMDowMGRkAgcPDxYCHwIFB1RFTEZPUkRkZAIIDw8WAh8CBQJJS2RkAgkPDxYCHwIFAkZHZGQCCg8PFgQfAwqmAR8EAghkFgICAQ8PFgIfAgUKSW4gUHJvY2Vzc2RkAgsPDx... ---> System.Web.HttpException: Unable to validate data. at System.Web.Configuration.MachineKeySection.GetDecodedData(Byte[] buf, Byte[] modifier, Int32 start, Int32 length, Int32&amp; dataLength) at System.Web.UI.ObjectStateFormatter.Deserialize(String inputString) --- End of inner exception stack trace ---</p> http://stackoverflow.com/questions/401060/what-asp-net-web-controls-implement-ipostbackdatahandler 0 What ASP.NET Web Controls implement IPostBackDataHandler? AlexWalker 2008-12-30T18:32:54Z 2009-11-03T07:00:03Z <p>Could someone point me to a list of controls that implement IPostBackDataHandler?</p> <p>I want to know what controls implement this interface and what properties the controls will set during the Postback.</p> <p>For example:</p> <blockquote> <p>Textbox : Text</p> <p>DropDownList : SelectedIndex</p> </blockquote> <p>I'm basically looking for a list of properties that will not be saved in ViewState.</p> <p>Thanks!</p> http://stackoverflow.com/questions/896962/viewstate-is-taking-20-of-my-pages-even-though-its-disabled 2 ViewState is taking 20% of my pages even though it's disabled! Waleed Eissa 2009-05-22T08:55:44Z 2009-11-02T13:15:23Z <p>I disabled viewstate in the web.config file (and there's no EnableViewState = true anywhere on the pages), but despite this, the pages are rendered with a quite large view state (8k for a 40k page). I checked the viewstate contents with a viewstate decoder and discovered that the multiview controls I'm using on my pages are the guilty ones. Is there anyway to make the multiview controls stop using the viewstate?</p> <p>I'm thinking about creating a control class that inherits from MultiView and override the LoadViewState and SaveViewState methods but I'm leaving this as a last resort, any suggestions?</p> <p>Thanks</p> http://stackoverflow.com/questions/1660019/problems-using-firebug-to-view-script-on-an-asp-net-page-with-a-very-large-viewst 0 Problems using Firebug to view script on an ASP.NET page with a very large VIEWSTATE Boris Nikolaevich 2009-11-02T08:26:35Z 2009-11-02T08:40:16Z <p>I inherited an ASP.NET application that builds pages with massive viewstate values. As I have been working through it, I assumed I would be able to use Firebug to inspect the output and set breakpoints in the resulting client-side script.</p> <p>What I have found instead is that whenever Firebug encounters a large viewstate, it completely chokes on rendering the Script tab, making it almost impossible to set and use breakpoints.</p> <p>What I see in the output is something very similar to this:</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" &gt; &lt;HTML&gt; &lt;HEAD&gt; --snipped-- &lt;/HEAD&gt; &lt;body&gt; &lt;form name="..." method="post" action="..." id="..."&gt; &lt;input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/V4dAUdVmVyc2lvbiAzLjAsIGJ1aWxkIDMxIChlbi1VUylkAgUPFgIfAGVkAgsPDxYCHwAFC1RpbSBCb29ybWFuZGQCDw8QDxYCHgtfIURhdGFC &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" &gt; &lt;HTML&gt; &lt;HEAD&gt; --snipped-- &lt;/HEAD&gt; &lt;body&gt; &lt;form name="..." method="post" action="..." id="..."&gt; &lt;input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/V4dAUdVmVyc2lvbiAzLjAsIGJ1aWxkIDMxIChlbi1VUylkAgUPFgIfAGVkAgsPDxYCHwAFC1RpbSBCb29ybWFuZGQCDw8QDxYCHgtfIURhdGFC &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" &gt; &lt;HTML&gt; &lt;HEAD&gt; --snipped-- &lt;/HEAD&gt; &lt;body&gt; &lt;form name="..." method="post" action="..." id="..."&gt; &lt;input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/V4dAUdVmVyc2lvbiAzLjAsIGJ1aWxkIDMxIChlbi1VUylkAgUPFgIfAGVkAgsPDxYCHwAFC1RpbSBCb29ybWFuZGQCDw8QDxYCHgtfIURhdGFC </code></pre> <p>In other words, Firebug gets halfway through the viewstate value, then starts over from the top, rendering everything from the DOCTYPE declaration to the same spot in the viewstate.</p> <p>While I recognize (and am working on) the fact that there is a problem with the way this application uses viewstate, I am surprised by Firebug's handling of the output. I have the latest versions of both Firefox and Firebug. Is there a setting I can change to make the script tab render correctly? Has anyone else had issues with Firebug and ASP.NET viewstate?</p> http://stackoverflow.com/questions/1645016/resolving-viewstate-namespace-conflicts 1 Resolving viewstate/namespace conflicts earlz 2009-10-29T16:40:36Z 2009-10-30T19:04:36Z <p>Hi, I have a listbox control. When the user clicks it, it tells a custom control to use a certain ID to use.</p> <p>The custom control draws the same thing everytime(dynamically), just loads different content depending on this ID(it's loaded from a database into a dynamic form like control).</p> <p>Ok, Now I'm having trouble with viewstate spillage. When you click the listbox to load say ID #1, it'll all look good. Then, you click on ID #2 and all the textbox controls created inside the custom control has the same thing that was put in ID #1. So when the listbox index changes I need to clear the view state, but I can't get this to work.</p> <p>All of the controls are created at Page_Load also.</p> <p>I tried ViewState.Clear() at Page_Load but that didn't do anything. </p> <p>I had the custom control derive from INamingInterface, but I guess the IDs still match for viewstate.</p> <p>I've tried changing the custom controls ID to something unique(like "CONROL_"+id.ToString()) I've also tried doing the same thing with the panel containing the custom control.</p> <p>I can not seem to get rid of this view state!</p> <p>EDIT Ok here is code that demonstrates the problem</p> <pre><code>public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (ddl.SelectedValue == "1") { Create("ID #1"); } else if (ddl.SelectedValue == "2") { Create("ID #2"); } } void Create(string text) { TextBox t = new TextBox(); t.Text = text; pnl.Controls.Add(t); } } </code></pre> <p>the markup:</p> <pre><code>&lt;div&gt; &lt;asp:Panel ID="pnl" runat="server"&gt; &lt;asp:DropDownList ID="ddl" runat="server" AutoPostBack="True"&gt; &lt;asp:ListItem Text="id 1" Value="1"&gt; &lt;/asp:ListItem&gt; &lt;asp:ListItem Text="id 2" Value="2"&gt;&lt;/asp:ListItem&gt; &lt;/asp:DropDownList&gt; &lt;/asp:Panel&gt; &lt;/div&gt; </code></pre> <p>If you run this code you'll notice that if you change what is in the textbox and then you change the dropdown list, then what you typed earlier will be kept in there instead of it being overwritten.. </p> <p>My basic goal with this is to get it so that when you change to ID #2, it puts "ID #2" in the textbox no matter what(preferably without disabling viewstate altogether)</p> http://stackoverflow.com/questions/1629154/can-a-datareader-be-stored-in-a-viewstate 3 Can a datareader be stored in a viewstate? Himadri 2009-10-27T07:06:47Z 2009-10-27T07:27:51Z <p>Hi all,</p> <p>Can a datareader be stored in a viewstate?</p> <p>What data can be stored in viewstate?</p> http://stackoverflow.com/questions/1626389/viewstate-error-concurrent-users-modifying-dynamic-controls 0 ViewState error: Concurrent users modifying dynamic controls. dev.e.loper 2009-10-26T18:10:43Z 2009-10-26T18:14:51Z <p>Have a page that adds controls dynamically. Control state is being retrieved from database and controls are re-added to page on postback. User can add/delete controls through UI. When two users are on the same page and one adds/removes controls the other user will get ViewState error next time he tries to modify control state. </p> <p>"<em>Failed to load viewstate. The control tree into which viewstate is being loaded must match the control tree that was used to save viewstate during the previous request. For example, when adding controls dynamically, the controls added during a post-back must match the type and position of the controls added during the initial request."</em></p> <p>This is because when page is drawn I use one set of controls and I get a different set of controls on postback because control state was modified by different user. </p> <p>I understand the error and why its happening but I think I'm missing something here. Is there a way to have a page that dynamically adds controls and can handle concurrent users that modifiy the state of controls?</p>