473,413 Members | 1,696 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,413 software developers and data experts.

Please help with this problem. I am stoopid. (regarding session vars)

Why do my session values return to nothing on post back?

I want to click a button and have the row, as in: dataset.table(0).rows(THIS
ROW NUMBER IS WHAT I AM TALKING ABOUT), either increment or decrement to
facilitate a movenext and movelast. I have been pulling my hair out and am
at the end of my rope.

PLEASE, how should I implement this? I have tried everything I can think
of, which really isn't much considering I am just beginning my forray into
vb.net programming. I have included all of my code.

I think that I am almost there, (I think) I just need to understand why my
session variables (in the IncrementRow and DecrementRow functions) keep
getting set to zero on post back. The Session("ApplicantID") in the
page_load sub is persistant and that session variable is set from another
page, entirely!!!!

Public Class applicantactivity
Inherits System.Web.UI.Page
Protected WithEvents btnSaveFile As
System.Web.UI.WebControls.ImageButton
Protected WithEvents btnEditPersonRecord As
System.Web.UI.WebControls.ImageButton
Protected WithEvents btnNewPersonRecord As
System.Web.UI.WebControls.ImageButton
Protected WithEvents btnNewCompanyRecord As
System.Web.UI.WebControls.ImageButton
Protected WithEvents btnClientActivity As
System.Web.UI.WebControls.ImageButton
Protected WithEvents btnApplicantActivity As
System.Web.UI.WebControls.ImageButton
Protected WithEvents txtAppInfoURL As System.Web.UI.WebControls.TextBox
Protected WithEvents txtAppInfoEmail As
System.Web.UI.WebControls.TextBox
Protected WithEvents Label12 As System.Web.UI.WebControls.Label
Protected WithEvents Label11 As System.Web.UI.WebControls.Label
Protected WithEvents txtAppInfoFax As System.Web.UI.WebControls.TextBox
Protected WithEvents txtAppInfoPhone As
System.Web.UI.WebControls.TextBox
Protected WithEvents Label10 As System.Web.UI.WebControls.Label
Protected WithEvents Label9 As System.Web.UI.WebControls.Label
Protected WithEvents Label8 As System.Web.UI.WebControls.Label
Protected WithEvents Label7 As System.Web.UI.WebControls.Label
Protected WithEvents txtAppInfoSigOther As
System.Web.UI.WebControls.TextBox
Protected WithEvents Label6 As System.Web.UI.WebControls.Label
Protected WithEvents txtAppInfoRegionLong As
System.Web.UI.WebControls.TextBox
Protected WithEvents txtAppInfoRegionCode As
System.Web.UI.WebControls.TextBox
Protected WithEvents Label5 As System.Web.UI.WebControls.Label
Protected WithEvents txtAppInfoCountry As
System.Web.UI.WebControls.TextBox
Protected WithEvents Label4 As System.Web.UI.WebControls.Label
Protected WithEvents txtAppInfoCity As System.Web.UI.WebControls.TextBox
Protected WithEvents Label3 As System.Web.UI.WebControls.Label
Protected WithEvents txtAppInfoAddress2 As
System.Web.UI.WebControls.TextBox
Protected WithEvents txtAppInfoAddress1 As
System.Web.UI.WebControls.TextBox
Protected WithEvents Label2 As System.Web.UI.WebControls.Label
Protected WithEvents txtAppInfoMI As System.Web.UI.WebControls.TextBox
Protected WithEvents txtAppInfoFirstName As
System.Web.UI.WebControls.TextBox
Protected WithEvents pnlAppInfo As System.Web.UI.WebControls.Panel
Protected WithEvents TextBox2 As System.Web.UI.WebControls.TextBox
Protected WithEvents TextBox1 As System.Web.UI.WebControls.TextBox
Protected WithEvents Label1 As System.Web.UI.WebControls.Label
Protected WithEvents Label13 As System.Web.UI.WebControls.Label
Protected WithEvents Label14 As System.Web.UI.WebControls.Label
Protected WithEvents Label15 As System.Web.UI.WebControls.Label
Protected WithEvents txtActivityDate As
System.Web.UI.WebControls.TextBox
Protected WithEvents btnBOF As System.Web.UI.WebControls.ImageButton
Protected WithEvents btnPrev As System.Web.UI.WebControls.ImageButton
Protected WithEvents btnNext As System.Web.UI.WebControls.ImageButton
Protected WithEvents btnEOF As System.Web.UI.WebControls.ImageButton
Protected WithEvents pnlDashBoard As System.Web.UI.WebControls.Panel

#Region " Web Form Designer Generated Code "

'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()> Private Sub
InitializeComponent()

End Sub

Private Sub Page_Init(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub

#End Region
Protected AppActivityPageTitle As
System.Web.UI.HtmlControls.HtmlGenericControl

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
AppActivityPageTitle.InnerText = "AppActivity - " &
Session("ApplicantFullName")
If Not Page.IsPostBack Then
Dim ApplicantActivityDS As DataSet
ApplicantActivityDS =
GetApplicantActivity(Session("ApplicantID"))
Session("CurrentRow") = 0
FillApplicantScreen(ApplicantActivityDS, Session("CurrentRow"))
End If
End Sub

Function GetApplicantActivity(ByVal ApplicantID As String)
Dim SqlCon As New SqlClient.SqlConnection()
Dim DA As New SqlClient.SqlDataAdapter()
Dim SqlCmd As New SqlClient.SqlCommand()
Dim ApplicantActivityDS As New DataSet()
Dim SQLSelectStatement As String
Dim ColumnNames As String
Dim FromClause As String
Dim WhereClause As String
Dim OrderClause As String
SqlCon = SqlQueryLibrary.BuildQuery.SQLConnect("server", "user",
"pass", "database")
SqlCmd.CommandTimeout = 60
ColumnNames = "*"
FromClause = "ApplicantActivity"
WhereClause = "Applicant_ID= " & ApplicantID
OrderClause = "date desc"
ApplicantActivityDS = SqlQueryLibrary.SQlSelect.SelectThis("server",
"user", "pass", "database", ColumnNames, FromClause, WhereClause,
OrderClause, ApplicantActivityDS)
Return ApplicantActivityDS
End Function

Sub FillApplicantScreen(ByVal ApplicantActivityDataset As DataSet, ByVal
RowNumber As Integer)
txtActivityDate.Text =
ApplicantActivityDataset.Tables(0).Rows(RowNumber) .Item(16).ToString
End Sub

Private Sub btnNext_Click(ByVal sender As System.Object, ByVal e As
System.Web.UI.ImageClickEventArgs) Handles btnNext.Click
Dim rownumber As Integer = IncrementRow()
Dim ApplicantActivityDS As DataSet
ApplicantActivityDS = GetApplicantActivity(Session("ApplicantID"))
FillApplicantScreen(ApplicantActivityDS, rownumber)
End Sub
Function IncrementRow()
Dim rownumber As Integer = Session("CurrentRow") + 1
Session("CurrentRow") = rownumber
Return rownumber
End Function
Function DecrementRow()
Dim rownumber As Integer = Session("CurrentRow") - 1
Session("CurrentRow") = rownumber
Return rownumber
End Function
End Class
Nov 21 '05 #1
3 1547
Aaron,

I thought that you did not store the datasets between the post. The easiest
is to save it just in a session and when the page isposted back (in the else
root of that in your load event) to restore it again to the dataset

In a webpage is all really stateless, so that means that when you do not
reload it after a postback it will not be there.

I do not know if that is the only thing.

I hope this helps?

Cor
Nov 21 '05 #2
I think I am on the right track if I can figure out how to get my
Session("CurrentRow") to persist. Can you see why it gets set back to 0?
I do not have any problems accessing the dataset, my problem is when I
debug, the first time the page loads, Session("CurrentRow") is set to 0.
When I hit the movenext button, the session is incremented by one to "1".
When I hit the button again, I see that the value if Session("CurrentRow") =
0 again, and then it gets incremented to "1" with the IncrementRow
function. I can not get past 1.

If your point is that I am re-retrieving the data, that is another issue
that I can work on. Right now I am concentrating on moving on to the next
row and beyond. Then I have to be able to move backward, to BOF and EOF, as
well. I guess I will try to keep that dataset in a session variable, but
right now I can't even get a basic integer to stick around long enough...

Perhaps some code examples of how you might navigate dataset rows in an
ASP.NET environment would be helpful.

Protected AppActivityPageTitle As
System.Web.UI.HtmlControls.HtmlGenericControl

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
AppActivityPageTitle.InnerText = "AppActivity - " &
Session("ApplicantFullName")
If Not Page.IsPostBack Then
Dim ApplicantActivityDS As DataSet
ApplicantActivityDS =
GetApplicantActivity(Session("ApplicantID"))
Session("CurrentRow") = 0
FillApplicantScreen(ApplicantActivityDS, Session("CurrentRow"))
End If
End Sub

Function GetApplicantActivity(ByVal ApplicantID As String)
Dim SqlCon As New SqlClient.SqlConnection()
Dim DA As New SqlClient.SqlDataAdapter()
Dim SqlCmd As New SqlClient.SqlCommand()
Dim ApplicantActivityDS As New DataSet()
Dim SQLSelectStatement As String
Dim ColumnNames As String
Dim FromClause As String
Dim WhereClause As String
Dim OrderClause As String
SqlCon = SqlQueryLibrary.BuildQuery.SQLConnect("server", "user",
"pass", "database")
SqlCmd.CommandTimeout = 60
ColumnNames = "*"
FromClause = "ApplicantActivity"
WhereClause = "Applicant_ID= " & ApplicantID
OrderClause = "date desc"
ApplicantActivityDS = SqlQueryLibrary.SQlSelect.SelectThis("server",
"user", "pass", "database", ColumnNames, FromClause, WhereClause,
OrderClause, ApplicantActivityDS)
Return ApplicantActivityDS
End Function

Sub FillApplicantScreen(ByVal ApplicantActivityDataset As DataSet, ByVal
RowNumber As Integer)
txtActivityDate.Text =
ApplicantActivityDataset.Tables(0).Rows(RowNumber) .Item(16).ToString
End Sub

Private Sub btnNext_Click(ByVal sender As System.Object, ByVal e As
System.Web.UI.ImageClickEventArgs) Handles btnNext.Click
Dim rownumber As Integer = IncrementRow()
Dim ApplicantActivityDS As DataSet
ApplicantActivityDS = GetApplicantActivity(Session("ApplicantID"))
FillApplicantScreen(ApplicantActivityDS, rownumber)
End Sub
Function IncrementRow()
Dim rownumber As Integer = Session("CurrentRow") + 1
Session("CurrentRow") = rownumber
Return rownumber
End Function
Function DecrementRow()
Dim rownumber As Integer = Session("CurrentRow") - 1
Session("CurrentRow") = rownumber
Return rownumber
End Function
Nov 21 '05 #3

"Aaron" <aa***@jonharvey.com> wrote in message
news:O3*************@TK2MSFTNGP11.phx.gbl...
I think I am on the right track if I can figure out how to get my
Session("CurrentRow") to persist. Can you see why it gets set back to 0?


Not from the code you posted. Do a search for >>> Session("CurrentRow") = 0
<<< and make sure the Page_Load is the ONLY place you're setting this to 0.
Nov 21 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
by: Mimi | last post by:
Hello, I am having trouble using the session vars in PHP 4.3.9 OS: Win XP Prof Web Server IIS (is local and there are no links to other servers from the web pages I work on) Browser: IE 6.0 ...
0
by: Michael J. Wendell | last post by:
Hello, I am trying to debug an issue with sessions in my ASP 3.0 web application, which runs fine on WIN2K Pro and WINXP Pro, yet fails to function correctly on WIN2K Advanced Server. My actual...
4
by: Kenny Ashton | last post by:
Hello gurus Can I ask you opions on the best compromise for storing Access Ado connection strings in a IIS4 standard ASP environment. For any method I use, there seems to be an article somewhere...
7
by: Adam Short | last post by:
I'm having all sorts of problems with Sessions, I've been using them for years with out a hitch, all of a sudden the last 6 - 12 months since getting our new Win2003 server it's all gone shakey!!!...
7
by: Nicole | last post by:
Hi I'm trying to use a function to set a session variable. I have three files: The first file has: <?php session_start(); // This connects to the existing session ?> <html> <head>
6
by: JDP | last post by:
First off let me say that http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/converttoaspnet.asp would not work as I see it. Right off, I can't have a cookie. ...
5
by: VB Programmer | last post by:
I often use session variables to store the user's security level, and other important info. How secure are session variables? Can someone decrypt it and get the information? (This would be...
5
by: chromis | last post by:
Hi there, I've recently been updating a site to use locking on application level variables, and I am trying to use a commonly used method which copies the application struct into the request...
4
by: mattehz | last post by:
Hey there, I am trying to upload old source files and came across these errors: Warning: Invalid argument supplied for foreach() in /home/mattehz/public_html/acssr/trunk/inc_html.php on line 59...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.