T
TCB
I have coded a page something like this (this page contains a Wizard
control):
Private shared p_MyInt as Integer
Sub Page_Load(.....)
If Not(me.ispostback) then
p_MyInt = Request.QueryString("SomeInt")
End If
.... some other stuff
End Sub
At the end of the wizard....
Sub SaveData()
'Calls a class that stores the data
StoreData(p_MyInt,etc,etc,etc)
Response.Redirect("AppResult.aspx")
End Sub
Somehow when StoreData is called, the value of p_MyInt is completelly
different of what it should be, what can cause this change in values?
Thank you all!
control):
Private shared p_MyInt as Integer
Sub Page_Load(.....)
If Not(me.ispostback) then
p_MyInt = Request.QueryString("SomeInt")
End If
.... some other stuff
End Sub
At the end of the wizard....
Sub SaveData()
'Calls a class that stores the data
StoreData(p_MyInt,etc,etc,etc)
Response.Redirect("AppResult.aspx")
End Sub
Somehow when StoreData is called, the value of p_MyInt is completelly
different of what it should be, what can cause this change in values?
Thank you all!