State Management :: Variable To Store Temporary Page Data?

Sep 29, 2010

I'm working on a web page that is going to be used to enter data into a database. The page is going to be dynamic in that the user has the ability to add a row to the table with the same fields, ie lname1, fname1, mi1 then lname2, fname2, mi2

I'm wanting to use a variable to keep track of how many lines there are so that when I generate the added line I am creating a new field with the ID of lname+# . Whats the best way to do this, a global variable, session variable? As side note, first time programming in .Net or C#.

View 3 Replies


Similar Messages:

State Management :: Public Variable Vs Session Variable To Store Logged In UserID

May 17, 2010

I have a web application which uses a session variable to store the logged in userid. If no user is logged in, of course this variable will be empty and the contents displayed on my website are meant for guests. If there is a user logged in, the user specific controls/access/links will then be a displayed.

I am now having issues with my hosting where on shared application pool, the worker recycle is triggered every 90 minutes, this will clear sessions causing all my users to be logged out. I opted for a dedicated application pool, which got worse because I am only allocated 50MB memory limit and if this is reached, the worker recycle is triggered and I lose my sessions again. I have tried as much as possible optimization techniques, e.g. dispose where possible, close connections, disable viewstate for static controls etc but my memory per instance keeps building up from page to page without any signs of improvement. I don't use loops nor store huge objects like bitmaps etc but my sessions are now gone even faster than 90 minutes in shared application pool before.

I have considered using SQL Session State but there isn't a simple guide on using this with MySQL. I am getting desperate and considering using a public variable, a string as a replacement to store logged in user id instead of in a session variable. I am pretty sure this will solve my issue with sessions being recycled but are there any negative consequences of doing this? One problem I can think of is if the user closes the browser, the system will never know that the user is now logged out and this public variable should be nothing. In this scenario, will the GC eventually clear this abandoned public variable.

View 10 Replies

State Management :: Store 2 Arrays In One Session Variable

Apr 21, 2010

I have 2 arrays declared like this :

[Code]....

and i wish to put both in one session variable and then retrieve it to get one array like:

{"intItemID","strCategory","strType"}

View 3 Replies

State Management :: Store An ArrayList Into A Session Variable?

Apr 23, 2010

I'm looking store an ArrayList into a session variable, but am having a few problems. Can you spot anything wrong?

public partial class _Default : System.Web.UI.Page { ArrayList score = new ArrayList(); protected void twist2(object sender, EventArgs e) { int a = 11; int c = RandomNumber(a); score.Add(c); score = (ArrayList)Session["scoreData"]; Result.Text = (c).ToString(); String Result_id = Result.Text; int total = 0; //Session["scoreData"] = score; for (int i = 0; i < score.Count; ++i) { total += (int)score[i]; } Sum.Text = (total).ToString(); String Sum_id = Sum.Text; }

View 3 Replies

State Management :: Store And Retrieve Multiple Values In A Single Session Variable?

Aug 24, 2010

I want to store employee name,designation and department in session variable and retrieve in another page how to do this.

View 2 Replies

State Management :: What Temporary Storage Should Use For Holding Edited Data

May 17, 2010

I need to do edit funtionality for registration forms (5 in number) in a trading system. Requirment is to do it in a way that user edit details in a form and click next or previous button and data will be saved somewhere until user reach last form and click save button. On this click all changes will be updated to database table. where I should hold this temporary data ? I cant use database tables for this. There come many options in mind like cach, session and application variables. But I am confuse which way will best performance wise. There are 5 forms and every form has 15 to 25 fields in it. I dont know expected no of users but hoping a good count.

View 8 Replies

State Management :: Storing Temporary And Large Amount Of Data?

Jun 9, 2010

I have a scenario for which I wanted the best solution in asp.net c#. My application allows users to retrieve search data from database, this data is the users own temporary list of records which they can search, delete records or select them. All these actions are only on users temporary data list and not on the data base. I have currently carried out this functionality using data table which is stored in session. This method is causing problems when huge amounts of data is held in session (eg: 7000 records). I need a best possible solution for this. Is creating temporary tables an option? Can it be assigned to particular user sessions? Please point me to the right direction and right articles.

View 5 Replies

State Management :: Show Previous Page Data In Next Page Using Session Variable

Jan 19, 2011

I want to show my data in next page with well formated in table.I all ready write code for session which show data in next page.but i want to show it in table format and i also want to comapre in database for a price and show too. this is my code for next page:

[Code]....

this code show me data but as i say iwant it in table format and want to comapare session varibles in database i want to show price accoding that particular product. The Pervious page code:

[Code]....

View 4 Replies

State Management :: Passing The Variable To Another Page?

May 3, 2010

want to use the value of a variable on to the other page, what i am supposed to do for that.i am novice at asp.net

View 8 Replies

State Management :: Session Variable Looses Its Value On Next Page?

Jul 23, 2010

IDE: MS Visual Studio 2008 / SQL Server 2005 Express / SQL Server Management Studio Express 2005

Skills: Beginner

Well im trying to make a custom login page(im not using ASP.net Login Control), in Admin.aspx page

UserName and Pasword are entered in textboxes , then Code-Behind file checks the UserName and Pasword against DataBase(it stores the UserName and Pasword) if both are correct Session["IsAuthenticated"] = "true" and then user is redirected to AdminArea.aspx

AdminArea.aspx checks if ( Session["IsAuthenticated"].ToString() == "false" ) then redirect to Error page..

but i get NullReferenceException on AdminArea.aspx because Session["IsAuthenticated"] is null , i dont know why ?

I even tried PreviousPage.Session["IsAuthneticated"] but still got the same error..

I debugged,and found out Admin.aspx saves value in Session["IsAuthenticated"] succesfully but AdminArea.aspx looses the Session["IsAuthenticated"]..so it gets null

My Question is how to retain value in Session["IsAuthenticated"] when page is changed (I want to retrieve value in next page from Session)?

View 11 Replies

State Management :: How To Define A Global Variable In A Page

Oct 31, 2010

I have to define a global and unchangeable variable in a web page. I used static variable but its content is the same for all users that use the page and it is bad. I dont want use Session variable.

View 5 Replies

State Management :: Can't Retrieve Session Variable From Another Page

Sep 27, 2010

i'm a asp.net c# beginner, i set a session variable in a.aspx but it's null when i try to retrieve it in b.aspx

View 5 Replies

State Management :: Declare A Variable In Page Load{} As Global?

Jan 2, 2011

i want to declare a variable in page load{} as global so that i can monitor it so that it is not recreated each time

View 4 Replies

State Management :: Session Variable Disappears When Leaving Page?

May 14, 2010

I have a session variable which contains a list of elements. The user defines filters, which are sent to the Database, which fills the object with the elements that match. Then, that list is shown in a table. The code goes something like this:

[Code]....

Inside that page there is a button, which sends the request given the user filters. The Server creates the object and the session variable is assigned a value.

[Code]....

It works when the user sets the filters. However, given that once done it, the session variable has a value, I don't understand why if you navigate to other pages, the table doesn't appear when you return, given that:

1. It works when you perform the query and reload the page

2. The Session variable should be set for the rest of the session

View 2 Replies

State Management :: Transfer A Variable To Another Page When A Button Is Clicked?

Nov 4, 2010

I want to transfer a variable to another page when a button is clicked. I include the html code in label.text.

Source code is as follows:

MyLabel.Text += "<button type="button" onclick="location.href='a.aspx?oid='+this.oid"><b>Detail</b></button>";

oid is the variable that I want to transfer.However, It says "http://localhost:61884 OBJ_Browser.aspx?oid=undefined" when I click this button.

how I can transfer the value of oid to another page?

View 9 Replies

State Management :: Option To Store Confidential Information In A Page?Control,Session,QueryString Etc?

Jan 20, 2011

Which is best option to store confidential information in a page?Control,Session,QueryString etc ... ?And also the performance also should be good ... ?

View 11 Replies

State Management :: Processing 3 Input Excel Files By Storing In Global Temporary Tables?

Apr 29, 2010

Input: - 3 excel files storing them into global temporary tables after reading cell by cell.

Requirement is to process inputs files and generate a single excel report.

After report gets exported, data in tables in should be deleted (i am using global temp tables for this).

But the problem is, two users are unable to generate report simultaneously.

Is this problem with global temporary tables?

View 1 Replies

State Management :: Can Get Few Data From Textboxes And Store It In Cookies

Sep 28, 2010

can i get few data from textboxes (like 12 text boxes) and store it in cookies? so the next time the user will not need to type the data again (so the data will place auto in the text boxes for the next times)

View 5 Replies

State Management :: How To Store Data From DataBase Like XmlNode

Sep 21, 2010

i am building an N-tier application now i want to store Data(like XmlNode) that is common to all users ..

now i thought using Application to hold the data but my data lays in the BLL tier which is an Class Library project and i can't store any datain there for example :

HttpApplication MyApp=new HttpApplication();
MyApp.Application["Data"]=XmlNode;

My question is what is the best way to store Data (not small data like user name etc..) is it Application? orCache?

i would like a small example within a ClassLibrary project

View 2 Replies

State Management :: Session Variable And Applying The Master Page Dynamically Using The Page_PreInit Event

Jun 8, 2010

In my web application, I have to load different Master pages depending on the user log-in information. When I say different, I mean not just the colors but a whole new look[including navigation options]. So I am using 2 Master pages [one of them is set as default] and depending on the user information the other page will be used.

I got it to work by storing the user information in a Session variable and applying the master page dynamically using the Page_PreInit event. But the issue is, if I hit the back
button, sometimes [yeah, only sometimes !!!] the master page is reset to the default page. Initially I thought it is a Session timeout issue. But it isn't, as some of the session variables still have data. Can anyone explain whats actually happening?

View 4 Replies

State Management :: How To Store A Large Amount Of Data In User's Session

Sep 29, 2010

I need to store a large amount of data in user's session but I guess using Session Object is not the best way of doing that. Is there any other way around??? Remember I don't have small variables to store, I have large collections.

View 5 Replies

MVC :: How To Not Store Specific Page In Temporary Internet Files

Jul 3, 2010

I have a problem only in IE where my JQuery filetree cannot be refreshed unless the browser is closed, or temporary internet files is deleted via Tools -> Internet Options

Anyone know of a way so that this particular page never gets cached into temp internet files?

I've tried putting this in the header

[Code]....

As described here: [URL]

Nothing seems to work :

Preferably a solution for both IE8 and IE6 (yes i still have to support that goddamned browser)

View 2 Replies

State Management :: Getting Data From Textbox Into A Cookie Or Session Variable?

Jan 10, 2011

(i) I have a simple application where I am getting data from a textbox and storing it in a cookie. I noticed that unless I set the Autopostback value of the textbox to TRUE, nothing is stored. Does anyone know why this is the case?

The code I am using are as follows:

[Code]....

View 4 Replies

State Management :: Session Variable Authentication State Timeout?

Dec 3, 2010

I am building a web app that is limited to one database, therefore I cannot use the ASP.NET config tool. As a quick means of getting this app online, I tried to use a simple session variable. The login page verifies the user's credentials, and if they pass, it sets the session variable to a certain value. All other pages check in the page_load event whether or not the session variable is equal to that value. The problem is that once being logged in for a short while and sending and recieving some data, the session variable resets, and I'm returned to the login page to repeat the process. Here's the basic code from my webforms:

[code]....

Is there some setting I need to change in the web.config file to adjust the cookie timeout or is that only for the config tool authentication methods?

View 5 Replies

State Management :: Create A Session Variable To Pass Some Data Between A Couple Of Pages?

Mar 20, 2011

I searched on this all morning, but I'm still not sure. If I create a session variable to pass some data between a couple of pages, does that variable time out after it reaches the timeout period set on IIS, or will it persist for the entire time the user keeps a session alive? For example, session variable is used shortly after login and then never again. Susy uses other pages for two hours and keeps session active. Did that first session variable die after 20 minutes, or is it still there 2 hours later?

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved