Click here to Skip to main content
15,923,374 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionasp.net state management issue help req'd Pin
haseeb_saeed23-Apr-09 9:39
haseeb_saeed23-Apr-09 9:39 
AnswerRe: asp.net state management issue help req'd Pin
ToddHileHoffer23-Apr-09 10:29
ToddHileHoffer23-Apr-09 10:29 
AnswerRe: asp.net state management issue help req'd Pin
SayreCC23-Apr-09 14:36
SayreCC23-Apr-09 14:36 
QuestionRe: asp.net state management issue help req'd Pin
haseeb_saeed23-Apr-09 15:41
haseeb_saeed23-Apr-09 15:41 
QuestionDoes Session.SessionID change on every postback for the same user? Pin
pzn3xq23-Apr-09 8:23
pzn3xq23-Apr-09 8:23 
AnswerRe: Does Session.SessionID change on every postback for the same user? Pin
ToddHileHoffer23-Apr-09 9:03
ToddHileHoffer23-Apr-09 9:03 
AnswerRe: Does Session.SessionID change on every postback for the same user? Pin
Yusuf23-Apr-09 9:28
Yusuf23-Apr-09 9:28 
AnswerRe: Does Session.SessionID change on every postback for the same user? Pin
AlexeiXX323-Apr-09 13:15
AlexeiXX323-Apr-09 13:15 
You will receive different sessionID while you havent save something in the session
Once you save something in the session, the sessionID will remain the same

Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
    Response.Write("Init " & Session.SessionID)
End Sub

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    If Not Page.IsPostBack Then Session("X") = "X"
End Sub


Alexei Rodriguez

QuestionSitemap Menu by profils Pin
diacoboss23-Apr-09 7:54
diacoboss23-Apr-09 7:54 
AnswerRe: Sitemap Menu by profils Pin
Yusuf23-Apr-09 9:31
Yusuf23-Apr-09 9:31 
AnswerRe: Sitemap Menu by profils Pin
SayreCC23-Apr-09 14:39
SayreCC23-Apr-09 14:39 
GeneralRe: Sitemap Menu by profils Pin
diacoboss24-Apr-09 2:02
diacoboss24-Apr-09 2:02 
Questionformview finding control Pin
haseeb_saeed23-Apr-09 7:26
haseeb_saeed23-Apr-09 7:26 
QuestionProcess request Error. Pin
Maxy5523-Apr-09 6:58
Maxy5523-Apr-09 6:58 
AnswerRe: Process request Error. Pin
Yusuf23-Apr-09 9:33
Yusuf23-Apr-09 9:33 
QuestionDisplay multiple pages in the same page Pin
armasramirez23-Apr-09 6:02
armasramirez23-Apr-09 6:02 
AnswerRe: Display multiple pages in the same page Pin
Parwej Ahamad23-Apr-09 6:15
professionalParwej Ahamad23-Apr-09 6:15 
GeneralRe: Display multiple pages in the same page Pin
armasramirez23-Apr-09 6:35
armasramirez23-Apr-09 6:35 
GeneralRe: Display multiple pages in the same page Pin
Parwej Ahamad23-Apr-09 6:37
professionalParwej Ahamad23-Apr-09 6:37 
QuestionApp_GlobalResources.resources.dll [modified] Pin
dataminers23-Apr-09 5:27
dataminers23-Apr-09 5:27 
QuestionAdd new row to a Datalist Pin
sameercodes23-Apr-09 4:53
sameercodes23-Apr-09 4:53 
AnswerRe: Add new row to a Datalist Pin
RonRasmussen23-Apr-09 5:20
RonRasmussen23-Apr-09 5:20 
AnswerRe: Add new row to a Datalist Pin
AlexeiXX323-Apr-09 13:22
AlexeiXX323-Apr-09 13:22 
Questionsave image from flash binary data Pin
blacktsinan23-Apr-09 3:41
blacktsinan23-Apr-09 3:41 
AnswerRe: save image from flash binary data Pin
ToddHileHoffer23-Apr-09 4:41
ToddHileHoffer23-Apr-09 4:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.