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

  • SEARCH
  • Home
  • 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 7403299
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:02:12+00:00 2026-05-29T05:02:12+00:00

I am setting a session value in the Handler page and want to use

  • 0

I am setting a session value in the Handler page and want to use that in other page, when I access the session value in other page I get the error saying Object reference not set to an instance of an object.

string ad=Session["StackOverflow"].ToString();

How to access the session value in c# .aspx page

public class Upload : IHttpHandler, IRequiresSessionState{
    public void ProcessRequest (HttpContext context) {

    context.Session.Add("StackOverflow",filename);    
}}
  • 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-29T05:02:13+00:00Added an answer on May 29, 2026 at 5:02 am

    What you have there should work except it is worth noting that you need to include an implementation of the IRequiresSessionState interface.

    using System.Web.Sessionstate;
    
     public class Handler: IHttpHandler, IRequiresSessionState
     {
    
        public void ProcessRequest(HttpContext context)
        {
           context.Session["YourSessionVar"] = yourStringVar;
        }
     }
    

    EDIT: OP edited question after post

    In order to access the variable in your other page be sure to implement IRequiresSessionState on that page too. If you fail to do this you will not have access to the session variables.

    EDIT: Futher info requested by OP

    In order to access the session variable on your aspx page do the following:

    using Sytem.Web.SessionState;
    
    public class YourClass : IRequiresSessionState
    {
        public string MyVar;
    
        protected void Page_Load(object senser, EventArgs e)
        {
            MyVar = Session["YourSessionVarName"].ToString();
        }
    }
    

    Now to add this into your onclick function in the html/aspx page you do this

    <div onclick="yourJScriptFunction('<% Response.Write(MyVar) %>');">
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am setting the session value but when i try to get it on
CFMX 8 Enterprise I have turned on the Use J2EE session variables setting under
I'm using Flash uploader(uploadify, swfupload) with CodeIgniter, want to get the session data. I
I am setting the value of Session[UserID] to Id of logined user, so I
There are two options when setting up your JBPM session. You can put your
Collection.clear() will delete children whenever Session flushes. What about OneToOne? Setting to null is
I have used session to store some config setting in MVC3 application, in my
Hi I want to setup AV capture session to capture images with specific resolution
I'm setting a Session of MM_CustomerID in my code and then further down the
if(empty($_SESSION['count'])){ $_SESSION['count']=99; }else{ $_SESSION['count']--; } echo $_SESSION['count']; In Firefox, I get decremented value but

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.