473,386 Members | 1,726 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,386 software developers and data experts.

No One Has the Solution Seems..

hi,
I had posted a query
Subj:Integrating ASP.NET Web Projects to share session variables

But it seems no one has the answer to the problem
very strange......

--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)
Nov 18 '05 #1
5 1341
I do not think you can specfically share a Session but you can share a
cookie across subdomains/folders. This might be able to do what you need it
to do. You would need to give more specific details as to exactly what you
are attempting to accomplish.



".NET Follower" <am*************@SoftHome.net> wrote in message
news:eC**************@TK2MSFTNGP10.phx.gbl...
hi,
I had posted a query
Subj:Integrating ASP.NET Web Projects to share session variables

But it seems no one has the answer to the problem
very strange......

--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)

Nov 18 '05 #2
Hi,

I have solution
in which there are two ASP.NET Web Projects.

i want to share session variables between the two web projects in the same
solution....

anyone....?

actually we cannot share session state between two application in IIS
normally .

but there should be some methods to accomplih this...i guess.


--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)
<jo*****@driver.net> wrote in message
news:uJ**************@TK2MSFTNGP09.phx.gbl...
I do not think you can specfically share a Session but you can share a
cookie across subdomains/folders. This might be able to do what you need it to do. You would need to give more specific details as to exactly what you
are attempting to accomplish.



".NET Follower" <am*************@SoftHome.net> wrote in message
news:eC**************@TK2MSFTNGP10.phx.gbl...
hi,
I had posted a query
Subj:Integrating ASP.NET Web Projects to share session variables

But it seems no one has the answer to the problem
very strange......

--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)


Nov 18 '05 #3
Well since you still were unable to give any details to what you "really"
want to do I can only suggest my prior suggestion.
Use A cookie to store a unique session Identifier. If the projects span
multiple domains then you will have to work out authrozing the cookie for
multiple domains. You will also probably need to do your own serialization
and deserialization. Without more specific information though it is
impossible to tell what is really the right solution for this situation


".NET Follower" <am*************@SoftHome.net> wrote in message
news:uJ**************@TK2MSFTNGP12.phx.gbl...
Hi,

I have solution
in which there are two ASP.NET Web Projects.

i want to share session variables between the two web projects in the same
solution....

anyone....?

actually we cannot share session state between two application in IIS
normally .

but there should be some methods to accomplih this...i guess.


--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)
<jo*****@driver.net> wrote in message
news:uJ**************@TK2MSFTNGP09.phx.gbl...
I do not think you can specfically share a Session but you can share
a
cookie across subdomains/folders. This might be able to do what you need

it
to do. You would need to give more specific details as to exactly what
you
are attempting to accomplish.



".NET Follower" <am*************@SoftHome.net> wrote in message
news:eC**************@TK2MSFTNGP10.phx.gbl...
> hi,
> I had posted a query
> Subj:Integrating ASP.NET Web Projects to share session variables
>
> But it seems no one has the answer to the problem
> very strange......
>
> --
> Thanks and Regards,
>
> Amit Agarwal
> Software Programmer(.NET)
>
>



Nov 18 '05 #4
Read this :
http://msdn.microsoft.com/library/en...rttoaspnet.asp

Can help you!

Brun
".NET Follower" <am*************@SoftHome.net> wrote in message
news:eC**************@TK2MSFTNGP10.phx.gbl...
hi,
I had posted a query
Subj:Integrating ASP.NET Web Projects to share session variables

But it seems no one has the answer to the problem
very strange......

--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)

Nov 18 '05 #5
This is simply a matter of thinking correctly. You don't want to share
Session variables between applications. A variable is simply a storage
mechanism for data. What you want is to share DATA between applications.
Once you start thinking that way, the possible answers should begin flooding
into your mind (Messaging, Web Services, Remoting, Page request via form
post, query string, etc). As the memory in one app (where Session resides)
is not avaialble to the other, the data must be passed via something else.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

".NET Follower" <am*************@SoftHome.net> wrote in message
news:uJ**************@TK2MSFTNGP12.phx.gbl...
Hi,

I have solution
in which there are two ASP.NET Web Projects.

i want to share session variables between the two web projects in the same
solution....

anyone....?

actually we cannot share session state between two application in IIS
normally .

but there should be some methods to accomplih this...i guess.


--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)
<jo*****@driver.net> wrote in message
news:uJ**************@TK2MSFTNGP09.phx.gbl...
I do not think you can specfically share a Session but you can share a cookie across subdomains/folders. This might be able to do what you need

it
to do. You would need to give more specific details as to exactly what you are attempting to accomplish.



".NET Follower" <am*************@SoftHome.net> wrote in message
news:eC**************@TK2MSFTNGP10.phx.gbl...
hi,
I had posted a query
Subj:Integrating ASP.NET Web Projects to share session variables

But it seems no one has the answer to the problem
very strange......

--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)



Nov 18 '05 #6

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

Similar topics

3
by: Dave | last post by:
I have a Solution with two projects. I am trying to reference a class in project2 from project1. When I right click on the project1 references (in Solutions explorer)and attempt to add a...
5
by: Dave L | last post by:
This is a strange problem that's plagued me for years using the .NET tools. The problem is this: ..NET applications installed on a virgin machine (framework installed, but no ..NET tools...
0
by: Vani | last post by:
Has anyone come across this issue? There seems to be a behavioral difference (and possible bug) in visual strudio 2003 when building a vc.net solution through IDE and building the same solution...
13
by: Pete | last post by:
I'm cross posting from mscom.webservices.general as I have received no answer there: There has been a number of recent posts requesting how to satisfactorily enable BASIC authorization at the...
3
by: musosdev | last post by:
Hi guys Okay, I've setup my projects to open and compile fine in VS2005 using FPSE and remote web, but it's *really* slow. So I thought I'd have a go at doing it the normal way, by loading from...
5
by: cmay | last post by:
I have a big solution filled with a bunch of projects. I add a project to the solution (not adding any references mind you). Now, if I close down everything and try to just open that single...
0
by: GroupReader | last post by:
We have a shared solution that is in VSS. The solution contains several projects in addition to the main website "project". The solution seems to work fine. All developers can open the solution...
1
by: Hans Kesting | last post by:
Hi, I can't get a vs2008 solution to compile. I have copied the source from a (compiling) 2.0 web-application to a new directory (I didn't want to change the old code), and tried to compile...
6
by: David Mark | last post by:
On Jul 27, 9:37 pm, Jonas Smith <jonas.sm...@yahoo.comwrote: Here somebody has regurgitated a lot of bad examples in a very bad color scheme, but there are a couple of useful ideas to be found: ...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.