Hi Rod,

If you're crossing application boundaries, you won't be able to share
session state. You can, however, send along some information in a hidden
form field and grab it back in the Request.Form collection.

If you are NOT crossing application boundaries but are simply trying to
share session state between ASP and ASP.NET, this article might help you:

[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html[/url]
/converttoaspnet.asp

Jim Cheshire
Developer Support
ASP.NET
[email]jamesche@online.microsoft.com[/email]

This post is provided as-is with no warranties and confers no rights.

--------------------
>From: "Rod" <rodulforg@hotmail.com>
>Subject: Another Session Variables question
>Date: Fri, 7 Dec 2001 12:48:17 -0600
>Lines: 36
>X-Priority: 3
>X-MSMail-Priority: Normal
>X-Newsreader: Microsoft Outlook Express 6.00.2462.0000
>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2462.0000
>Message-ID: <utXLz80fBHA.2080@tkmsftngp07>
>Newsgroups: microsoft.public.dotnet.framework.aspnet
>NNTP-Posting-Host: 200.53.94.130
>Path: cpmsftngxa09!cpmsftngxa07!tkmsftngp01!tkmsftngp07
>Xref: cpmsftngxa09 microsoft.public.dotnet.framework.aspnet:21261
>X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
>
>Hi there!
>
>I cant find the way to pass some data trough some ASP.NET pages.
>
>Now I have an app in tradicional ASPīs, from there I call a new ASP.NET
app.
>I have some variable session in the ASP app, and what I need is to set the
>value of one of this varibales with the value that I get in the ASP.NET
app.
>
>I have inside the form :
><form id="Form1" method="post" runat="server">
>
>The button:
><asp:Button Runat="server" ID="Btn_Enviar" Text="Enviar"
>OnClick="OnClickBtn_Enviar" Visible="True">
>
>And inside the function "OnClickBtn_Enviar" I redirect to the ASP app:
>Response.Redirect([url]http://localhost/webfax/envio_fax/verifica.asp[/url])
>
>
>
>How can I send to Verifica.asp a value via a post?
>
>Or there is another way to set that Session Variable Value?
>
>
>
>Thanks in advance!!
>
>
>
>Rod
>
>
>
>
>
>