Ask a Question related to ASP.NET, Design and Development.
-
Tu-Thach #1
View state help
Do you modify the page at all? Sometimes modifying the
page causes the error you described. Alternatively, you
do not have to use ViewState in your page.
Tu-Thach
a>-----Original Message-----
>hello All,
>
>we have a data entry web application written in asp.net,
>there are about 30 users uses the application
>simultaneously. We uses the SQL database to insert
>records, avg insert is about 800 record per day. We are
>having a wired problem we get this error message once inmight>while..."The View State is invalid for this page and>be corrupted"...It doesn't happen all the time. Does
>anybody know how to resolve this problem...and what are
>advantage of using View State...Any help is appreciated...
>
>
>Thanks
>Manan
>
>
>.
>Tu-Thach Guest
-
view state question
In many custom controls examples I see the following code: public string Text { get { return (string)ViewState; } set { -
Maintaining view state in datagrid
hi all, I have a datagrid in my asp.net page. In that datagrid, i have paging enabled. And one template column having checkbox control in... -
Radiobutton view state is gone...
Hi ... I an building a web form with a usercotrole on the usercontrole i have several Radiobuttons not in list but in in Group. so they are... -
View State Help !!!
hi I have a datagrid bound to a datasource. I am generating the columns in the datagrid dynamically. I override the loadviewstate method and... -
Invalid View State Problem
I am trying to migrate an ASP.NET web application from one server to another. The web app works fine on the original web server, but gives me the... -
manan #2
View state help
yes. I did modify the page.
appreciated...>-----Original Message-----
>Do you modify the page at all? Sometimes modifying the
>page causes the error you described. Alternatively, you
>do not have to use ViewState in your page.
>
>Tu-Thach
>>a>>-----Original Message-----
>>hello All,
>>
>>we have a data entry web application written in asp.net,
>>there are about 30 users uses the application
>>simultaneously. We uses the SQL database to insert
>>records, avg insert is about 800 record per day. We are
>>having a wired problem we get this error message once in>might>>while..."The View State is invalid for this page and>>be corrupted"...It doesn't happen all the time. Does
>>anybody know how to resolve this problem...and what are
>>advantage of using View State...Any help is>.>>
>>
>>Thanks
>>Manan
>>
>>
>>.
>>
>manan Guest
-
Jim Cheshire [MSFT] #3
RE: View state help
Manan,
Where are you seeing this? Is it in the browser or in the Event Viewer?
It is common to receive invalid Viewstate in cases where someone has
cancelled the loading of a page or clicked off of a page prior to its
complete loading. Can also be caused by the user closing the browser while
page is loading.
Jim Cheshire
Developer Support
ASP.NET
[email]jamesche@online.microsoft.com[/email]
This post is provided as-is with no warranties and confers no rights.
-------------------->Content-Class: urn:content-classes:message
>From: "manan" <anand125@hotmail.com>
>Sender: "manan" <anand125@hotmail.com>
>Subject: View state help
>Date: Wed, 30 Jul 2003 13:39:42 -0700
>Lines: 17
>Message-ID: <045101c356da$b4859b20$a401280a@phx.gbl>
>MIME-Version: 1.0
>Content-Type: text/plain;
> charset="iso-8859-1"
>Content-Transfer-Encoding: 7bit
>X-Newsreader: Microsoft CDO for Windows 2000
>Thread-Index: AcNW2rSFFQ16cEbcT2Sf0JMdkhfVZw==
>X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
>Newsgroups: microsoft.public.dotnet.framework.aspnet
>Path: cpmsftngxa06.phx.gbl
>Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163553
>NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
>X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
>
>hello All,
>
>we have a data entry web application written in asp.net,
>there are about 30 users uses the application
>simultaneously. We uses the SQL database to insert
>records, avg insert is about 800 record per day. We are
>having a wired problem we get this error message once in a
>while..."The View State is invalid for this page and might
>be corrupted"...It doesn't happen all the time. Does
>anybody know how to resolve this problem...and what are
>advantage of using View State...Any help is appreciated...
>
>
>Thanks
>Manan
>
>
>Jim Cheshire [MSFT] Guest
-
anoweb #4
View State Help
I am trying to use States in my Flex 3 application. The application is run
outside of the browser. The one thing I am hoping to improve upon is manual
labor of removing and adding components when the states change.
So for example if I have a login panel. Once the user logs in i want to go to
a new view with some other components. Right now in my mx:State I have defined:
<mx:RemoveChild .../>
<mx:RemoveChild ../>
<mx:AddChild ...>
<mx
ataGrid...>
</mx
ataGrid>
</mx:AddChild>
anyways...is there a better or nicer way of handling such things? I'm just
curious because it seems like a bunch of work referencing these components all
over the place. Just curious on how it might be done better.
Thanks in advance.
anoweb Guest
-
Sreenivas R #5
Re: View State Help
One can put the bunch of controls inside a custom container mxml component
extending canvas and just addChild that mxml component.
Of-course it is the same thing but helps to hide the complexity at the higher
level.
Sreenivas R Guest
-



Reply With Quote

