Skip to main content

Questions tagged [session-state]

Session-state allows the retrieval of values for a given user as that user navigates through a website. It is used to maintain state across a visit within the constraints of the stateless HTTP protocol. Session-state is commonly abbreviated to session.

session-state
0 votes
0 answers
10 views

How to manage session state using a custom session ID in ASP.NET Web API?

I am developing an ASP.NET Web API application where I need to manage session state based on a session ID sent from an Angular application. The session ID should be created if it does not exist, and ...
Meir's user avatar
  • 61
0 votes
0 answers
44 views

How to use redis ( with client certificate requirement ) for session state in ASP.NET on .NET 4.8?

We are currently using Redis for session state and cache management along with SignalR, and everything is working fine, because our current Redis server configuration allows connections without a ...
Ashish Ahir's user avatar
0 votes
0 answers
26 views

When I click the button it just refreshes the page

I am calling the Amadeus API to display flight offers. The API returns JSON which I parse and store in an SQLite database. display_flight_data() queries the database to display flight offers using ...
Abhirup Basu's user avatar
0 votes
0 answers
32 views

Blazor Server Application SQL Server Session State Management

I'm trying to implement SQL Server Session State Management in my Blazor Server Application in .NET 8. I have this SessionDemo component but it does not save the session variable to the database table ...
Sol's user avatar
  • 71
0 votes
0 answers
45 views

Using st.session_state in a streamlit web application that has been packaged into an .exe file

I used PyInstaller to package my streamlit python web application into an .exe file. However, I ran into some issues while trying to open my exe file (main.exe). If I click on the .exe file, I get the ...
user23590571's user avatar
0 votes
2 answers
40 views

Login session not accessible other than redirected page

This is my login.php if ($_SERVER["REQUEST_METHOD"] == "POST") { $username = $_POST['username']; $password = $_POST['password']; $stmt = $conn->prepare("SELECT ...
Asad Khrd's user avatar
0 votes
0 answers
44 views

Why does WLS fail to restore session?

Our clustered WLS 12.2.1.4.0 app is moving to a new environment and we're required to change its session management from "replicated_if_clustered" to "jdbc". Most pages work ...
JPPV's user avatar
  • 1
0 votes
0 answers
50 views

Streamlit Image Content disappears when download button clicked

In this code written below, I am running a replicate model to show an image in a streamlit container within a column. And with a download button to download the image. Initially after the condition ...
Param Dhingana's user avatar
0 votes
0 answers
61 views

How do I resolve Streamlit Image Content changing when download button clicked?

In this code written below, I am running a replicate model to show an image in a streamlit container within a column. And with a download button to download the image. Initially after the condition ...
Param Dhingana's user avatar
0 votes
0 answers
48 views

Get variables in form to update in chatbot - Streamlit

I am trying to create a feedback form after a chat question is answered. I cannot get the feedback fields in the form to update and save in a csv. I’ve tried both on_click in the st.form_submit_button ...
Sarah Wohlman's user avatar
0 votes
0 answers
22 views

Two Virtual Application in Sames IIS Site, but unable to pass session value by using Session State

Despite configuring the XML snippet provided for both applications and enabling the ASP.NET State Service, my VB .NET 4.8 application continues to encounter difficulties in passing session data to ...
Robinson_HQ's user avatar
-1 votes
1 answer
46 views

Session not persisting in PHP

EDIT: I know that normally the passwords need to be hashed and not plaintext. This specific assignment doesn't care about that. This isn't for a real website, it's just for learning how to deal with ...
WastelandSniper's user avatar
0 votes
1 answer
273 views

Multiple functions in StreamLit

I'm trying to create a web-scraping app that fetches data from a certain real estate website and returns a dataset including prices and cities. Having returned the dataset, the script should include a ...
Me_and_Michael's user avatar
0 votes
0 answers
45 views

ASP.NET Session variable data lost randomly for random users

I have a web application created using .Net Framework 4.6.1. Recently, I started getting complaints from users that they were redirected to the login page. It only happens when session data is not ...
Brijesh Gandhi's user avatar
0 votes
0 answers
25 views

Attach client side only state to history in Sveltekit

What is the best way to work with client side state and the browser's history api? As a learning experiment I'm building a dungeon crawler style webapp. Based on URL segments it renders a piece of the ...
Boris Callens's user avatar

15 30 50 per page
1
2 3 4 5
129