Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6037231
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T06:02:35+00:00 2026-05-23T06:02:35+00:00

I use viewstate like this: public bool SearchClicked { get { return Session[bool]==null? false

  • 0

I use viewstate like this:

public bool SearchClicked 
{ 
    get { return  Session["bool"]==null? false : (bool)Session["Bool"]; } 
    set { Session["bool"] = value; } 
}

In The code whenever the button pressed, the events triggered.

I set it:

    SearchClicked=true;

With every post back I check if it is true or not:

 if (SearchClicked)
{
}

When I start the site and there is a postback, the value is set to “true”.

It is true that i pressed the button that set it to true a few times before when i run the application. But the application instance is new everytime I run the application. Doesnt it mean that the ViewState resets itself with every time I run the application and doesnt save its state like Session (20mins)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T06:02:36+00:00Added an answer on May 23, 2026 at 6:02 am

    In your code above, you are not using ViewState to store the SearchClicked value, but rather you are using the Session to store it. ViewState is persisted on the page in a hidden value and gets posted back to the server. This means that the viewstate is stored on the browser, and therefor will persist as long as the user is on the page. Session information is stored on the server. A users session will eventually time out, but other things can cause the session to reset, such as rebuilding the application or editing the web.config file.

    To store to ViewState use the following

    public bool SearchClicked
    {
    get { return  ViewState["bool"] == null ? false : (bool)ViewState["bool"]; }
    set { ViewState["bool"] = value; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I recently read this article on smart use of ViewState and am particularly interested
consider the following class and struct public class Entity { public IdType Id {get;set;}
I'd like to set a default Razor layout via code in either a base
One of the sites I maintain relies heavily on the use of ViewState (it
This is just a matter of taste but I'd like to hear some of
I have this code, and it renders this HTML. How can I apply CSS
I want to use a temp directory that will be unique to this build.
(please excuse that I didn't use aliases). I would like my query output to
I use method=get to send my data from one webform to the other. But
I'm trying to get a single value from my table in a database. They

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.