Re: ASP and ASP.NET session pool
From: Michael Ramey (raterus_at_localhost)
Date: 02/03/04
- Next message: MS Newsgroups: "datagrid question"
- Previous message: George Ter-Saakov: "Re: Are there free ASP.NET tools that do *this*?"
- In reply to: David Kleyman: "ASP and ASP.NET session pool"
- Next in thread: Scott M.: "Re: ASP and ASP.NET session pool"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 3 Feb 2004 16:05:19 -0500
Here is a microsoft doc on the matter.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/converttoaspnet.asp
"David Kleyman" <test@hotmail.com> wrote in message
news:%23MgTsRp6DHA.1816@TK2MSFTNGP12.phx.gbl...
> Hello
>
> I am trying to gradually convert an existing ASP application in to ASP.NET
> one page at the time
> I am having a problem doing that. ASP and ASPX pages don't seem to be
> sharing the session pool
>
> For example
> In the old application login page was checking login credentials and if
they
> were correct creating a session variable UserID like this
> Dim userid
> userid = Request("UserID")
> Session("UserID") = userid
>
> then response was redirected to the main application page
> Response.Redirect("main.asp")
>
> in the new login.aspx web form I am doing pretty much the same thing but
> after the redirect to the main.asp it complains that Session("UserID") is
> not there
>
> I guess my questions are
> Can asp and aspx pages share Session values?
> Can I gradually migrate ASP web site to ASP.NET or do I have to do the
whole
> thing at once?
>
> Thank you
>
> David
>
>
>
- Next message: MS Newsgroups: "datagrid question"
- Previous message: George Ter-Saakov: "Re: Are there free ASP.NET tools that do *this*?"
- In reply to: David Kleyman: "ASP and ASP.NET session pool"
- Next in thread: Scott M.: "Re: ASP and ASP.NET session pool"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|