I am trying to connect 2 of my asp.net applications using context.items
collections
to share the variables.
but it says Could not load type 'Proj2.SignIn'.
I have set the authentication mode="Forms"
but still it says the same..
is there any other way to transfer my asp form variables to
my second application?
MothishFirst of all... what type of variable are you wanting to share?
As you couldnt share an user data as the users session would be uniqe to
each session.
"Mothish K" <kmothish@.sstil.com> wrote in message
news:uUxS1xpUEHA.3200@.TK2MSFTNGP10.phx.gbl...
> Hello,
> I am trying to connect 2 of my asp.net applications using context.items
> collections
> to share the variables.
> but it says Could not load type 'Proj2.SignIn'.
>
> I have set the authentication mode="Forms"
> but still it says the same..
> is there any other way to transfer my asp form variables to
> my second application?
> Mothish
I want to pass form elements from proj1 to proj2
I ve said not to use querystring.
is it possible
"Darren Clark" <dclark88@.hotmail.com> wrote in message
news:#FqrghqUEHA.1152@.TK2MSFTNGP09.phx.gbl...
> First of all... what type of variable are you wanting to share?
> As you couldnt share an user data as the users session would be uniqe to
> each session.
>
> "Mothish K" <kmothish@.sstil.com> wrote in message
> news:uUxS1xpUEHA.3200@.TK2MSFTNGP10.phx.gbl...
> > Hello,
> > I am trying to connect 2 of my asp.net applications using context.items
> > collections
> > to share the variables.
> > but it says Could not load type 'Proj2.SignIn'.
> > I have set the authentication mode="Forms"
> > but still it says the same..
> > is there any other way to transfer my asp form variables to
> > my second application?
> > Mothish
"Share" ? If this is just a one time single direction transmission you could
POST the data from one form in your A app to a form in your B app either by
changing the action client side (but involves possible problem with request
validation) or by sending values to the B app server side by using the
WebClient class :
http://msdn.microsoft.com/library/d...valuestopic.asp
--
"Mothish K" <kmothish@.sstil.com> a crit dans le message de
news:uNgKuCrUEHA.1656@.TK2MSFTNGP09.phx.gbl...
> I want to pass form elements from proj1 to proj2
> I ve said not to use querystring.
> is it possible
>
> "Darren Clark" <dclark88@.hotmail.com> wrote in message
> news:#FqrghqUEHA.1152@.TK2MSFTNGP09.phx.gbl...
> > First of all... what type of variable are you wanting to share?
> > As you couldnt share an user data as the users session would be uniqe to
> > each session.
> > "Mothish K" <kmothish@.sstil.com> wrote in message
> > news:uUxS1xpUEHA.3200@.TK2MSFTNGP10.phx.gbl...
> > > Hello,
> > > > I am trying to connect 2 of my asp.net applications using
context.items
> > > collections
> > > to share the variables.
> > > but it says Could not load type 'Proj2.SignIn'.
> > > > > I have set the authentication mode="Forms"
> > > but still it says the same..
> > > is there any other way to transfer my asp form variables to
> > > my second application?
> > > > Mothish
> > >
0 comments:
Post a Comment