vote up 0 vote down star

Consider the following code:

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
        If Page.IsPostBack Then
            If ViewState("test") IsNot Nothing Then
                Response.Write((ViewState("test").ToString))
            Else 
                Response.Write("Viewstate is empty.")
            End If
        Else
            ViewState("test") = "viewstate is working."
        End If
    End Sub

This code doesn't work on a particular page in my application. Viewstate is not turned off in the Page directive. I can't figure out what's going on. : \

Oh i just figured it out. See if you notice it.

.<

flag

I assume by not working you mean hitting: Response.Write("Viewstate is empty.")? – LFSR Consulting Jan 9 '09 at 17:05
Is the ViewState hidden field written to the client on the first GET? – Todd Jan 9 '09 at 17:05
going to delete this embarassment of a question – Shawn Simon Jan 9 '09 at 17:14
Please reply to your own post, instead of editing you post, and mark you reply as answer. :) I just replied, and did not figure out that you have answered it your self :) – Jesper Blad Jensen aka. Deldy Jan 9 '09 at 17:15
No don't it's a good reference for others! – LFSR Consulting Jan 9 '09 at 17:15

5 Answers

vote up 0 vote down

Since you didn't answer your own post...

I'd say you are checking IsPostBack and accessing ViewState at the wrong stages:

Handles Me.Init

That should be

Handles Me.Load

right?


For debugging such headaches in ASP.NET I'd also like to add that tracing can often helps a lot.

You can enable tracing by adding this to web.config:

<configuration>
  <system.web>
    <trace enabled="true" pageOutput="true" requestLimit="40" localOnly="false"/>
  </system.web>
</configuration>

This will append the stack trace and whatnot to the end of every page, so you can trace the execution and (hopefully) find out the problem.

link|flag
Doh!... I've got to be faster next time... – chakrit Jan 9 '09 at 17:28
vote up 3 vote down check

Figured it out, someone had changed the Page_Load event to handle Page.Init

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
link|flag
don't you hate those? – Tom Anderson Jan 10 '09 at 15:00
vote up 1 vote down

Are you SURE that you make a postback?

Do it write "Viewstate is empty"? Or just nothing?

link|flag
vote up 0 vote down

Could you post more code from the page?

How do you trigger the postback? a simple button?

link|flag
thers a ton of code and it works fine in another app. the code is owned by the company i work for. anyway the stuff you posted would throw a cast exception because viewstate is an object and string.isnullorempty expects a string. – Shawn Simon Jan 9 '09 at 17:10
Removed the code... – chakrit Jan 9 '09 at 17:23
vote up 1 vote down

You can turn off viewstate from the config file too.

<configuration>
  <appSettings>
    <Pages EnableViewState="false" />
  </appSettings>
</configuration>
link|flag
i voted up but its not the issues a viewsstate tag is actually getting rendered on the page. i feel like im going insane here. – Shawn Simon Jan 9 '09 at 17:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.